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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ enthält die Angaben zu einem der Partner im Ehe- und Lebenspartnerschaftsregister. * *
Java class for TPartner complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TPartner">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TPerson">
* <sequence>
* <element name="Geburtstag" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
* <element name="Geburtsort" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Kreis" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Geburtsland" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="FamiliennameNach" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="FamiliennameNachArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamensArt" minOccurs="0"/>
* <element name="GeburtsnameNach" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="GeburtsnameNachArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamensArt" minOccurs="0"/>
* <element name="VornamenNach" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="VornamenNachArt" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TVornamensArt" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TPartner", propOrder = {
"geburtstag",
"geburtsort",
"kreis",
"geburtsland",
"familiennameNach",
"familiennameNachArt",
"geburtsnameNach",
"geburtsnameNachArt",
"vornamenNach",
"vornamenNachArt"
})
@XmlSeeAlso({
TLPartner.class,
TEPartner.class
})
public class TPartner
extends TPerson
{
@XmlElement(name = "Geburtstag")
protected String geburtstag;
@XmlElement(name = "Geburtsort")
protected String geburtsort;
@XmlElement(name = "Kreis")
protected String kreis;
@XmlElement(name = "Geburtsland")
protected String geburtsland;
@XmlElement(name = "FamiliennameNach")
protected String familiennameNach;
@XmlElement(name = "FamiliennameNachArt")
protected String familiennameNachArt;
@XmlElement(name = "GeburtsnameNach")
protected String geburtsnameNach;
@XmlElement(name = "GeburtsnameNachArt")
protected String geburtsnameNachArt;
@XmlElement(name = "VornamenNach")
protected String vornamenNach;
@XmlElement(name = "VornamenNachArt")
protected String vornamenNachArt;
/**
* Gets the value of the geburtstag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtstag() {
return geburtstag;
}
/**
* Sets the value of the geburtstag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtstag(String value) {
this.geburtstag = value;
}
/**
* Gets the value of the geburtsort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtsort() {
return geburtsort;
}
/**
* Sets the value of the geburtsort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtsort(String value) {
this.geburtsort = value;
}
/**
* Gets the value of the kreis property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKreis() {
return kreis;
}
/**
* Sets the value of the kreis property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKreis(String value) {
this.kreis = value;
}
/**
* Gets the value of the geburtsland property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtsland() {
return geburtsland;
}
/**
* Sets the value of the geburtsland property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtsland(String value) {
this.geburtsland = value;
}
/**
* Gets the value of the familiennameNach property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamiliennameNach() {
return familiennameNach;
}
/**
* Sets the value of the familiennameNach property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamiliennameNach(String value) {
this.familiennameNach = value;
}
/**
* Gets the value of the familiennameNachArt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamiliennameNachArt() {
return familiennameNachArt;
}
/**
* Sets the value of the familiennameNachArt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamiliennameNachArt(String value) {
this.familiennameNachArt = value;
}
/**
* Gets the value of the geburtsnameNach property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtsnameNach() {
return geburtsnameNach;
}
/**
* Sets the value of the geburtsnameNach property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtsnameNach(String value) {
this.geburtsnameNach = value;
}
/**
* Gets the value of the geburtsnameNachArt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeburtsnameNachArt() {
return geburtsnameNachArt;
}
/**
* Sets the value of the geburtsnameNachArt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeburtsnameNachArt(String value) {
this.geburtsnameNachArt = value;
}
/**
* Gets the value of the vornamenNach property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVornamenNach() {
return vornamenNach;
}
/**
* Sets the value of the vornamenNach property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVornamenNach(String value) {
this.vornamenNach = value;
}
/**
* Gets the value of the vornamenNachArt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVornamenNachArt() {
return vornamenNachArt;
}
/**
* Sets the value of the vornamenNachArt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVornamenNachArt(String value) {
this.vornamenNachArt = value;
}
}