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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ enthält die Angaben zum Eintrag einer Lebenspartnerschaft. * * Der Typ enthält den Verweis auf die Beurkundung der Lebenspartnerschaft und Datum und * Ort der Lebenspartnerschaft. * *

Java class for TEintragLP complex type. * *

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

 * <complexType name="TEintragLP">
 *   <complexContent>
 *     <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TEintrag">
 *       <attribute name="wz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEintragLP") public class TEintragLP extends TEintrag { @XmlAttribute(name = "wz") @XmlSchemaType(name = "unsignedInt") protected Long wz; /** * Gets the value of the wz property. * * @return * possible object is * {@link Long } * */ public Long getWz() { return wz; } /** * Sets the value of the wz property. * * @param value * allowed object is * {@link Long } * */ public void setWz(Long value) { this.wz = value; } }