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 zum Testamentsverzeichnis. * *
Java class for TTestamentsverzeichnis complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TTestamentsverzeichnis">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="VerzeichnisNummer" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TTestamentsverzeichnis", propOrder = {
"verzeichnisNummer"
})
public class TTestamentsverzeichnis {
@XmlElement(name = "VerzeichnisNummer")
protected String verzeichnisNummer;
/**
* Gets the value of the verzeichnisNummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerzeichnisNummer() {
return verzeichnisNummer;
}
/**
* Sets the value of the verzeichnisNummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerzeichnisNummer(String value) {
this.verzeichnisNummer = value;
}
}