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="UrkundlTeilId" type="{http://www.fh-giessen.de/epr/Container/v1}TUrkundlTeilId"/>
 *         <element name="UrkundlTeilDaten" type="{http://www.fh-giessen.de/epr/Container/v1}TXMLContainer"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "urkundlTeilId", "urkundlTeilDaten" }) @XmlRootElement(name = "UrkundlRegister") public class UrkundlRegister { @XmlElement(name = "UrkundlTeilId", required = true) protected TUrkundlTeilId urkundlTeilId; @XmlElement(name = "UrkundlTeilDaten", required = true) protected TXMLContainer urkundlTeilDaten; /** * 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; } }