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 zu einem Ehepartner. * Seit 1. 5. 2013 wird bei einem Ehepartner auch das Geschlecht verzeichnet. Bei Einträgen davor wird implizit davon ausgegangen, dass die Ehefrau weiblich, der Ehemann männlich ist. * *

Java class for TEPartner complex type. * *

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

 * <complexType name="TEPartner">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TPartner">
 *       <sequence>
 *         <element name="Geschlecht" type="{http://www.fh-giessen.de/epr/Container/v1}TGeschlecht" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEPartner", propOrder = { "geschlecht" }) public class TEPartner extends TPartner { @XmlElement(name = "Geschlecht") protected String geschlecht; /** * 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; } }