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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Informationen zu einem Eintrag bei der Suche im Sterberegister. * *
Java class for TSEintragsInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TSEintragsInfo">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Container/v1}TEintragsInfo">
* <sequence>
* <element name="LetzterTag" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Namen" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
* <element name="Geburtstag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TSEintragsInfo", propOrder = {
"letzterTag",
"namen",
"geburtstag"
})
public class TSEintragsInfo
extends TEintragsInfo
{
@XmlElement(name = "LetzterTag")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar letzterTag;
@XmlElement(name = "Namen")
protected TNamensInfo namen;
@XmlElement(name = "Geburtstag")
protected String geburtstag;
/**
* Gets the value of the letzterTag property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLetzterTag() {
return letzterTag;
}
/**
* Sets the value of the letzterTag property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLetzterTag(XMLGregorianCalendar value) {
this.letzterTag = value;
}
/**
* Gets the value of the namen property.
*
* @return
* possible object is
* {@link TNamensInfo }
*
*/
public TNamensInfo getNamen() {
return namen;
}
/**
* Sets the value of the namen property.
*
* @param value
* allowed object is
* {@link TNamensInfo }
*
*/
public void setNamen(TNamensInfo value) {
this.namen = value;
}
/**
* Gets the value of the geburtstag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtstag() {
return geburtstag;
}
/**
* Sets the value of the geburtstag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtstag(String value) {
this.geburtstag = value;
}
}