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.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ enthält die Namen einer Person. * *

Java class for TNamen complex type. * *

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

 * <complexType name="TNamen">
 *   <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="Geburtsname" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
 *         <element name="GeburtsnameArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamensArt" minOccurs="0"/>
 *         <element name="Vornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="VornamenArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TVornamensArt" minOccurs="0"/>
 *         <element name="DatumWirksamkeit" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TNamen", propOrder = { "familienname", "familiennameArt", "geburtsname", "geburtsnameArt", "vornamen", "vornamenArt", "datumWirksamkeit" }) @XmlSeeAlso({ TSPartner.class, TPerson.class }) public class TNamen { @XmlElement(name = "Familienname") protected String familienname; @XmlElement(name = "FamiliennameArt") protected String familiennameArt; @XmlElement(name = "Geburtsname") protected String geburtsname; @XmlElement(name = "GeburtsnameArt") protected String geburtsnameArt; @XmlElement(name = "Vornamen") protected String vornamen; @XmlElement(name = "VornamenArt") protected String vornamenArt; @XmlElement(name = "DatumWirksamkeit") @XmlSchemaType(name = "date") protected XMLGregorianCalendar datumWirksamkeit; /** * 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 geburtsname property. * * @return * possible object is * {@link String } * */ public String getGeburtsname() { return geburtsname; } /** * Sets the value of the geburtsname property. * * @param value * allowed object is * {@link String } * */ public void setGeburtsname(String value) { this.geburtsname = value; } /** * Gets the value of the geburtsnameArt property. * * @return * possible object is * {@link String } * */ public String getGeburtsnameArt() { return geburtsnameArt; } /** * Sets the value of the geburtsnameArt property. * * @param value * allowed object is * {@link String } * */ public void setGeburtsnameArt(String value) { this.geburtsnameArt = 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 datumWirksamkeit property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDatumWirksamkeit() { return datumWirksamkeit; } /** * Sets the value of the datumWirksamkeit property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDatumWirksamkeit(XMLGregorianCalendar value) { this.datumWirksamkeit = value; } }