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; /** * Dieser Typ dient als Behälter für PDF-Dokumente, die Bestandteil eines Eintrags sind. Er * wird verwendet für den urkundlichen Teil, den Hinweisteil und den Jahresabschluss. * *
Java class for TPDFContainer complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TPDFContainer">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Version" type="{http://www.fh-giessen.de/epr/Container/v1}TPDFVersion"/>
* <element name="Inhalt" type="{http://www.fh-giessen.de/epr/Container/v1}TPDFInhalt"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TPDFContainer", propOrder = {
"version",
"inhalt"
})
public class TPDFContainer {
@XmlElement(name = "Version", required = true)
protected String version;
@XmlElement(name = "Inhalt", required = true)
protected TPDFInhalt inhalt;
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Gets the value of the inhalt property.
*
* @return
* possible object is
* {@link TPDFInhalt }
*
*/
public TPDFInhalt getInhalt() {
return inhalt;
}
/**
* Sets the value of the inhalt property.
*
* @param value
* allowed object is
* {@link TPDFInhalt }
*
*/
public void setInhalt(TPDFInhalt value) {
this.inhalt = value;
}
}