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; /** * Angaben zu den Namen einer Person, wie sie in den Suchergebnissen * angegeben werden. * *

Java class for TNamensInfo complex type. * *

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

 * <complexType name="TNamensInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Familienname" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
 *         <element name="Geburtsname" 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"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TNamensInfo", propOrder = { "familienname", "geburtsname", "vornamen" }) public class TNamensInfo { @XmlElement(name = "Familienname", required = true) protected String familienname; @XmlElement(name = "Geburtsname") protected String geburtsname; @XmlElement(name = "Vornamen") protected String vornamen; /** * 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 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 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; } }