package de.fh_giessen.epr.inhalt.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ beschreibt die Angaben zu einem Kind der im Geburtenregister eingetragenen * Person. * *
Java class for TGeburtKindDesKindes complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TGeburtKindDesKindes">
* <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="Vornamen" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Eintrag" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TEintrag" minOccurs="0"/>
* <element name="ArtGeburt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TArtGeburt" minOccurs="0"/>
* </sequence>
* <attribute name="wz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TGeburtKindDesKindes", propOrder = {
"familienname",
"vornamen",
"eintrag",
"artGeburt"
})
public class TGeburtKindDesKindes {
@XmlElement(name = "Familienname")
protected String familienname;
@XmlElement(name = "Vornamen")
protected String vornamen;
@XmlElement(name = "Eintrag")
protected TEintrag eintrag;
@XmlElement(name = "ArtGeburt")
protected String artGeburt;
@XmlAttribute(name = "wz")
@XmlSchemaType(name = "unsignedInt")
protected Long wz;
/**
* 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 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 eintrag property.
*
* @return
* possible object is
* {@link TEintrag }
*
*/
public TEintrag getEintrag() {
return eintrag;
}
/**
* Sets the value of the eintrag property.
*
* @param value
* allowed object is
* {@link TEintrag }
*
*/
public void setEintrag(TEintrag value) {
this.eintrag = value;
}
/**
* Gets the value of the artGeburt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArtGeburt() {
return artGeburt;
}
/**
* Sets the value of the artGeburt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArtGeburt(String value) {
this.artGeburt = value;
}
/**
* Gets the value of the wz property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getWz() {
return wz;
}
/**
* Sets the value of the wz property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setWz(Long value) {
this.wz = value;
}
}