package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * Behälter für die Bestandteile eines urkundlichen Teils eines Registereintrags. * *
Java class for TUrkundlTeil complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TUrkundlTeil">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="UrkundlTeilId" type="{http://www.fh-giessen.de/epr/Container/v1}TUrkundlTeilId"/>
* <element name="UrkundlTeilDaten" type="{http://www.fh-giessen.de/epr/Container/v1}TXMLContainer"/>
* <element name="UrkundlTeilPDFA" type="{http://www.fh-giessen.de/epr/Container/v1}TPDFContainer"/>
* <element name="UrkundlTeilPDFMitXML" type="{http://www.fh-giessen.de/epr/Container/v1}TPDFContainer" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TUrkundlTeil", propOrder = {
"urkundlTeilId",
"urkundlTeilDaten",
"urkundlTeilPDFA",
"urkundlTeilPDFMitXML"
})
public class TUrkundlTeil {
@XmlElement(name = "UrkundlTeilId", required = true)
protected TUrkundlTeilId urkundlTeilId;
@XmlElement(name = "UrkundlTeilDaten", required = true)
protected TXMLContainer urkundlTeilDaten;
@XmlElement(name = "UrkundlTeilPDFA", required = true)
protected TPDFContainer urkundlTeilPDFA;
@XmlElement(name = "UrkundlTeilPDFMitXML")
protected TPDFContainer urkundlTeilPDFMitXML;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Gets the value of the urkundlTeilId property.
*
* @return
* possible object is
* {@link TUrkundlTeilId }
*
*/
public TUrkundlTeilId getUrkundlTeilId() {
return urkundlTeilId;
}
/**
* Sets the value of the urkundlTeilId property.
*
* @param value
* allowed object is
* {@link TUrkundlTeilId }
*
*/
public void setUrkundlTeilId(TUrkundlTeilId value) {
this.urkundlTeilId = value;
}
/**
* Gets the value of the urkundlTeilDaten property.
*
* @return
* possible object is
* {@link TXMLContainer }
*
*/
public TXMLContainer getUrkundlTeilDaten() {
return urkundlTeilDaten;
}
/**
* Sets the value of the urkundlTeilDaten property.
*
* @param value
* allowed object is
* {@link TXMLContainer }
*
*/
public void setUrkundlTeilDaten(TXMLContainer value) {
this.urkundlTeilDaten = value;
}
/**
* Gets the value of the urkundlTeilPDFA property.
*
* @return
* possible object is
* {@link TPDFContainer }
*
*/
public TPDFContainer getUrkundlTeilPDFA() {
return urkundlTeilPDFA;
}
/**
* Sets the value of the urkundlTeilPDFA property.
*
* @param value
* allowed object is
* {@link TPDFContainer }
*
*/
public void setUrkundlTeilPDFA(TPDFContainer value) {
this.urkundlTeilPDFA = value;
}
/**
* Gets the value of the urkundlTeilPDFMitXML property.
*
* @return
* possible object is
* {@link TPDFContainer }
*
*/
public TPDFContainer getUrkundlTeilPDFMitXML() {
return urkundlTeilPDFMitXML;
}
/**
* Sets the value of the urkundlTeilPDFMitXML property.
*
* @param value
* allowed object is
* {@link TPDFContainer }
*
*/
public void setUrkundlTeilPDFMitXML(TPDFContainer value) {
this.urkundlTeilPDFMitXML = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}