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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ enthält Angaben zur Person, deren Personenstandsfall beurkundet wurde. Zu den Namen kommt noch die Religionszugehörigkeit. * *
Java class for TPerson complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TPerson">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamen">
* <sequence>
* <element name="Religion" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TPerson", propOrder = {
"religion"
})
@XmlSeeAlso({
TElternteil.class,
TVerstorbenePerson.class,
TPartner.class
})
public class TPerson
extends TNamen
{
@XmlElement(name = "Religion")
protected String religion;
/**
* Gets the value of the religion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReligion() {
return religion;
}
/**
* Sets the value of the religion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReligion(String value) {
this.religion = value;
}
}