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 die Angaben zum Kind im Geburtenregister. * *
Java class for TKind complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TKind">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Familienname" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="FamiliennameArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamensArt" minOccurs="0"/>
* <element name="Vornamen" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="VornamenArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TVornamensArt" minOccurs="0"/>
* <element name="Geschlecht" type="{http://www.fh-giessen.de/epr/Container/v1}TGeschlecht" minOccurs="0"/>
* <element name="Religion" 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"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TKind", propOrder = {
"familienname",
"familiennameArt",
"vornamen",
"vornamenArt",
"geschlecht",
"religion",
"fehlendeNachweise"
})
public class TKind {
@XmlElement(name = "Familienname")
protected String familienname;
@XmlElement(name = "FamiliennameArt")
protected String familiennameArt;
@XmlElement(name = "Vornamen")
protected String vornamen;
@XmlElement(name = "VornamenArt")
protected String vornamenArt;
@XmlElement(name = "Geschlecht")
protected String geschlecht;
@XmlElement(name = "Religion")
protected String religion;
@XmlElement(name = "FehlendeNachweise")
protected String fehlendeNachweise;
/**
* Gets the value of the familienname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamilienname() {
return familienname;
}
/**
* Sets the value of the familienname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamilienname(String value) {
this.familienname = value;
}
/**
* Gets the value of the familiennameArt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamiliennameArt() {
return familiennameArt;
}
/**
* Sets the value of the familiennameArt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamiliennameArt(String value) {
this.familiennameArt = value;
}
/**
* Gets the value of the vornamen property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVornamen() {
return vornamen;
}
/**
* Sets the value of the vornamen property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVornamen(String value) {
this.vornamen = value;
}
/**
* Gets the value of the vornamenArt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVornamenArt() {
return vornamenArt;
}
/**
* Sets the value of the vornamenArt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVornamenArt(String value) {
this.vornamenArt = value;
}
/**
* 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 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;
}
/**
* 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;
}
}