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.XmlType; /** * Informationen zu einem Eintrag bei der Suche im Geburtenregister. * *

Java class for TGEintragsInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TGEintragsInfo">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Container/v1}TEintragsInfo">
 *       <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="NamenMutter" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
 *         <element name="NamenVater" type="{http://www.fh-giessen.de/epr/Container/v1}TNamensInfo" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TGEintragsInfo", propOrder = { "familienname", "vornamen", "namenMutter", "namenVater" }) public class TGEintragsInfo extends TEintragsInfo { @XmlElement(name = "Familienname") protected String familienname; @XmlElement(name = "Vornamen") protected String vornamen; @XmlElement(name = "NamenMutter") protected TNamensInfo namenMutter; @XmlElement(name = "NamenVater") protected TNamensInfo namenVater; /** * 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 namenMutter property. * * @return * possible object is * {@link TNamensInfo } * */ public TNamensInfo getNamenMutter() { return namenMutter; } /** * Sets the value of the namenMutter property. * * @param value * allowed object is * {@link TNamensInfo } * */ public void setNamenMutter(TNamensInfo value) { this.namenMutter = value; } /** * Gets the value of the namenVater property. * * @return * possible object is * {@link TNamensInfo } * */ public TNamensInfo getNamenVater() { return namenVater; } /** * Sets the value of the namenVater property. * * @param value * allowed object is * {@link TNamensInfo } * */ public void setNamenVater(TNamensInfo value) { this.namenVater = value; } }