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.XmlType; /** * Behälter für Bestandteile eines Dokuments für den Jahresabschluss. * *
Java class for TJahresAbschluss complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TJahresAbschluss">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="RegisterJahrId" type="{http://www.fh-giessen.de/epr/Container/v1}TRegisterJahrId"/>
* <element name="JahresAbschlussPDF" type="{http://www.fh-giessen.de/epr/Container/v1}TPDFContainer"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TJahresAbschluss", propOrder = {
"registerJahrId",
"jahresAbschlussPDF"
})
public class TJahresAbschluss {
@XmlElement(name = "RegisterJahrId", required = true)
protected TRegisterJahrId registerJahrId;
@XmlElement(name = "JahresAbschlussPDF", required = true)
protected TPDFContainer jahresAbschlussPDF;
/**
* Gets the value of the registerJahrId property.
*
* @return
* possible object is
* {@link TRegisterJahrId }
*
*/
public TRegisterJahrId getRegisterJahrId() {
return registerJahrId;
}
/**
* Sets the value of the registerJahrId property.
*
* @param value
* allowed object is
* {@link TRegisterJahrId }
*
*/
public void setRegisterJahrId(TRegisterJahrId value) {
this.registerJahrId = value;
}
/**
* Gets the value of the jahresAbschlussPDF property.
*
* @return
* possible object is
* {@link TPDFContainer }
*
*/
public TPDFContainer getJahresAbschlussPDF() {
return jahresAbschlussPDF;
}
/**
* Sets the value of the jahresAbschlussPDF property.
*
* @param value
* allowed object is
* {@link TPDFContainer }
*
*/
public void setJahresAbschlussPDF(TPDFContainer value) {
this.jahresAbschlussPDF = value;
}
}