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 erweitert TEintrag um den Führungsort des Heiratsbuchs. * * Der Typ enthält den Verweis auf die Beurkundung der Eheschließung, Datum und Ort der * Eheschließung, sowie den Führungsort des Heiratseintrags. * *
Java class for TEintragEhe complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TEintragEhe">
* <complexContent>
* <extension base="{http://www.fh-giessen.de/epr/Inhalt/v1}TEintrag">
* <sequence>
* <element name="FuehrungsortHeiratseintrag" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Familienbuchkennzeichen" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* <attribute name="wz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEintragEhe", propOrder = {
"fuehrungsortHeiratseintrag",
"familienbuchkennzeichen"
})
public class TEintragEhe
extends TEintrag
{
@XmlElement(name = "FuehrungsortHeiratseintrag")
protected String fuehrungsortHeiratseintrag;
@XmlElement(name = "Familienbuchkennzeichen")
protected String familienbuchkennzeichen;
@XmlAttribute(name = "wz")
@XmlSchemaType(name = "unsignedInt")
protected Long wz;
/**
* Gets the value of the fuehrungsortHeiratseintrag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFuehrungsortHeiratseintrag() {
return fuehrungsortHeiratseintrag;
}
/**
* Sets the value of the fuehrungsortHeiratseintrag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFuehrungsortHeiratseintrag(String value) {
this.fuehrungsortHeiratseintrag = value;
}
/**
* Gets the value of the familienbuchkennzeichen property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamilienbuchkennzeichen() {
return familienbuchkennzeichen;
}
/**
* Sets the value of the familienbuchkennzeichen property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamilienbuchkennzeichen(String value) {
this.familienbuchkennzeichen = 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;
}
}