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="JahresAbschluss" type="{http://www.fh-giessen.de/epr/Container/v1}TJahresAbschluss"/>
* <element name="SignaturDatenContainer" type="{http://www.fh-giessen.de/epr/Container/v1}TSignaturDatenContainer"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"dokumentInfo",
"jahresAbschluss",
"signaturDatenContainer"
})
@XmlRootElement(name = "JahresAbschlussDokument")
public class JahresAbschlussDokument {
@XmlElement(name = "DokumentInfo", required = true)
protected TDokumentInfo dokumentInfo;
@XmlElement(name = "JahresAbschluss", required = true)
protected TJahresAbschluss jahresAbschluss;
@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 jahresAbschluss property.
*
* @return
* possible object is
* {@link TJahresAbschluss }
*
*/
public TJahresAbschluss getJahresAbschluss() {
return jahresAbschluss;
}
/**
* Sets the value of the jahresAbschluss property.
*
* @param value
* allowed object is
* {@link TJahresAbschluss }
*
*/
public void setJahresAbschluss(TJahresAbschluss value) {
this.jahresAbschluss = 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;
}
}