package de.fh_giessen.epr.inhalt.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ enthält die Angaben zum Partner einer verstorbenen Person. * * Der Typ hat einen Wiederholungszähler (das Attribut wz), weil es sein kann, dass in Deutschland verstorbene * Personen aus dem Ausland mehrere hinterbliebene Partner haben. * * Zusätzlich zu den Angaben zum Namen kommen FehlendeNachweise. * *
Java class for TSPartner complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TSPartner">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TNamen">
* <sequence>
* <element name="FehlendeNachweise" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* <attribute name="wz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TSPartner", propOrder = {
"fehlendeNachweise"
})
public class TSPartner
extends TNamen
{
@XmlElement(name = "FehlendeNachweise")
protected String fehlendeNachweise;
@XmlAttribute(name = "wz")
@XmlSchemaType(name = "unsignedInt")
protected Long wz;
/**
* Gets the value of the fehlendeNachweise property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFehlendeNachweise() {
return fehlendeNachweise;
}
/**
* Sets the value of the fehlendeNachweise property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFehlendeNachweise(String value) {
this.fehlendeNachweise = value;
}
/**
* Gets the value of the wz property.
*
* @return
* possible object is
* {@link Long }
*
*/
public long getWz() {
if (wz == null) {
return 1L;
} else {
return wz;
}
}
/**
* Sets the value of the wz property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setWz(Long value) {
this.wz = value;
}
}