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; /** * Suchangaben für die Suche * nach Einträgen im Sterberegister. * *

Java class for TSSuchdaten complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TSSuchdaten">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Container/v1}TSuchdaten">
 *       <sequence>
 *         <element name="Geburtstag" type="{http://www.fh-giessen.de/epr/Container/v1}TZeitraumTag" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TSSuchdaten", propOrder = { "geburtstag" }) public class TSSuchdaten extends TSuchdaten { @XmlElement(name = "Geburtstag") protected TZeitraumTag geburtstag; /** * Gets the value of the geburtstag property. * * @return * possible object is * {@link TZeitraumTag } * */ public TZeitraumTag getGeburtstag() { return geburtstag; } /** * Sets the value of the geburtstag property. * * @param value * allowed object is * {@link TZeitraumTag } * */ public void setGeburtstag(TZeitraumTag value) { this.geburtstag = value; } }