package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
Java class for anonymous complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DokumentInfo" type="{http://www.fh-giessen.de/epr/Container/v1}TDokumentInfo"/>
* <element name="UrkundlTeil" type="{http://www.fh-giessen.de/epr/Container/v1}TUrkundlTeil"/>
* <element name="SignaturDatenContainer" type="{http://www.fh-giessen.de/epr/Container/v1}TSignaturDatenContainer"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"dokumentInfo",
"urkundlTeil",
"signaturDatenContainer"
})
@XmlRootElement(name = "UrkundlTeilDokument")
public class UrkundlTeilDokument {
@XmlElement(name = "DokumentInfo", required = true)
protected TDokumentInfo dokumentInfo;
@XmlElement(name = "UrkundlTeil", required = true)
protected TUrkundlTeil urkundlTeil;
@XmlElement(name = "SignaturDatenContainer", required = true)
protected TSignaturDatenContainer signaturDatenContainer;
/**
* Gets the value of the dokumentInfo property.
*
* @return
* possible object is
* {@link TDokumentInfo }
*
*/
public TDokumentInfo getDokumentInfo() {
return dokumentInfo;
}
/**
* Sets the value of the dokumentInfo property.
*
* @param value
* allowed object is
* {@link TDokumentInfo }
*
*/
public void setDokumentInfo(TDokumentInfo value) {
this.dokumentInfo = value;
}
/**
* Gets the value of the urkundlTeil property.
*
* @return
* possible object is
* {@link TUrkundlTeil }
*
*/
public TUrkundlTeil getUrkundlTeil() {
return urkundlTeil;
}
/**
* Sets the value of the urkundlTeil property.
*
* @param value
* allowed object is
* {@link TUrkundlTeil }
*
*/
public void setUrkundlTeil(TUrkundlTeil value) {
this.urkundlTeil = value;
}
/**
* Gets the value of the signaturDatenContainer property.
*
* @return
* possible object is
* {@link TSignaturDatenContainer }
*
*/
public TSignaturDatenContainer getSignaturDatenContainer() {
return signaturDatenContainer;
}
/**
* Sets the value of the signaturDatenContainer property.
*
* @param value
* allowed object is
* {@link TSignaturDatenContainer }
*
*/
public void setSignaturDatenContainer(TSignaturDatenContainer value) {
this.signaturDatenContainer = value;
}
}