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 beschreibt die Angaben zu einer Ehe oder Lebenspartnerschaft der im Geburtenregister * eingetragenen Person. * *
Java class for TEheLPKind complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TEheLPKind">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Eintrag" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TEintrag" minOccurs="0"/>
* <element name="ArtAufloesung" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="AufloesungUrteil" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TGerichtsbeschluss" minOccurs="0"/>
* <element name="AufloesungTod" type="{http://www.fh-giessen.de/epr/Inhalt/v1}TAufloesungTod" minOccurs="0"/>
* </sequence>
* <attribute name="wz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEheLPKind", propOrder = {
"eintrag",
"artAufloesung",
"aufloesungUrteil",
"aufloesungTod"
})
public class TEheLPKind {
@XmlElement(name = "Eintrag")
protected TEintrag eintrag;
@XmlElement(name = "ArtAufloesung")
protected String artAufloesung;
@XmlElement(name = "AufloesungUrteil")
protected TGerichtsbeschluss aufloesungUrteil;
@XmlElement(name = "AufloesungTod")
protected TAufloesungTod aufloesungTod;
@XmlAttribute(name = "wz")
@XmlSchemaType(name = "unsignedInt")
protected Long wz;
/**
* Gets the value of the eintrag property.
*
* @return
* possible object is
* {@link TEintrag }
*
*/
public TEintrag getEintrag() {
return eintrag;
}
/**
* Sets the value of the eintrag property.
*
* @param value
* allowed object is
* {@link TEintrag }
*
*/
public void setEintrag(TEintrag value) {
this.eintrag = value;
}
/**
* Gets the value of the artAufloesung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArtAufloesung() {
return artAufloesung;
}
/**
* Sets the value of the artAufloesung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArtAufloesung(String value) {
this.artAufloesung = value;
}
/**
* Gets the value of the aufloesungUrteil property.
*
* @return
* possible object is
* {@link TGerichtsbeschluss }
*
*/
public TGerichtsbeschluss getAufloesungUrteil() {
return aufloesungUrteil;
}
/**
* Sets the value of the aufloesungUrteil property.
*
* @param value
* allowed object is
* {@link TGerichtsbeschluss }
*
*/
public void setAufloesungUrteil(TGerichtsbeschluss value) {
this.aufloesungUrteil = value;
}
/**
* Gets the value of the aufloesungTod property.
*
* @return
* possible object is
* {@link TAufloesungTod }
*
*/
public TAufloesungTod getAufloesungTod() {
return aufloesungTod;
}
/**
* Sets the value of the aufloesungTod property.
*
* @param value
* allowed object is
* {@link TAufloesungTod }
*
*/
public void setAufloesungTod(TAufloesungTod value) {
this.aufloesungTod = value;
}
/**
* 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;
}
}