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 beschreibt die Angaben zur Namensbestimmung bei der Eheschließung oder Begründung * einer Lebenspartnerschaft. * *
Java class for TBestimmungName complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TBestimmungName">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="WelcherName" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="RechtMannP1" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="RechtFrauP2" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TBestimmungName", propOrder = {
"name",
"welcherName",
"rechtMannP1",
"rechtFrauP2"
})
public class TBestimmungName {
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "WelcherName")
protected String welcherName;
@XmlElement(name = "RechtMannP1")
protected String rechtMannP1;
@XmlElement(name = "RechtFrauP2")
protected String rechtFrauP2;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the welcherName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWelcherName() {
return welcherName;
}
/**
* Sets the value of the welcherName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWelcherName(String value) {
this.welcherName = value;
}
/**
* Gets the value of the rechtMannP1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRechtMannP1() {
return rechtMannP1;
}
/**
* Sets the value of the rechtMannP1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRechtMannP1(String value) {
this.rechtMannP1 = value;
}
/**
* Gets the value of the rechtFrauP2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRechtFrauP2() {
return rechtFrauP2;
}
/**
* Sets the value of the rechtFrauP2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRechtFrauP2(String value) {
this.rechtFrauP2 = value;
}
}