package de.fh_giessen.epr.inhalt.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 enthält Angaben zur verstorbenen Person. * *
Java class for TVerstorbenePerson complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TVerstorbenePerson">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TPerson">
* <sequence>
* <element name="Geschlecht" type="{http://www.fh-giessen.de/epr/Container/v1}TGeschlecht" minOccurs="0"/>
* <element name="Geburtstag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
* <element name="Geburtsort" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Kreis" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Geburtsland" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="FehlendeNachweise" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Familienstand" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TFamilienstand" minOccurs="0"/>
* <element name="Alter" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TVerstorbenePerson", propOrder = {
"geschlecht",
"geburtstag",
"geburtsort",
"kreis",
"geburtsland",
"fehlendeNachweise",
"familienstand",
"alter"
})
public class TVerstorbenePerson
extends TPerson
{
@XmlElement(name = "Geschlecht")
protected String geschlecht;
@XmlElement(name = "Geburtstag")
protected String geburtstag;
@XmlElement(name = "Geburtsort")
protected String geburtsort;
@XmlElement(name = "Kreis")
protected String kreis;
@XmlElement(name = "Geburtsland")
protected String geburtsland;
@XmlElement(name = "FehlendeNachweise")
protected String fehlendeNachweise;
@XmlElement(name = "Familienstand")
protected String familienstand;
@XmlElement(name = "Alter")
protected String alter;
/**
* Gets the value of the geschlecht property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeschlecht() {
return geschlecht;
}
/**
* Sets the value of the geschlecht property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeschlecht(String value) {
this.geschlecht = 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;
}
/**
* Gets the value of the geburtsort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtsort() {
return geburtsort;
}
/**
* Sets the value of the geburtsort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtsort(String value) {
this.geburtsort = value;
}
/**
* Gets the value of the kreis property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKreis() {
return kreis;
}
/**
* Sets the value of the kreis property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKreis(String value) {
this.kreis = value;
}
/**
* Gets the value of the geburtsland property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtsland() {
return geburtsland;
}
/**
* Sets the value of the geburtsland property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtsland(String value) {
this.geburtsland = value;
}
/**
* Gets the value of the fehlendeNachweise property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFehlendeNachweise() {
return fehlendeNachweise;
}
/**
* Sets the value of the fehlendeNachweise property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFehlendeNachweise(String value) {
this.fehlendeNachweise = value;
}
/**
* Gets the value of the familienstand property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamilienstand() {
return familienstand;
}
/**
* Sets the value of the familienstand property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamilienstand(String value) {
this.familienstand = value;
}
/**
* Gets the value of the alter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlter() {
return alter;
}
/**
* Sets the value of the alter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlter(String value) {
this.alter = value;
}
}