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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * Dieser Typ enthält Angaben zu einer Beurkundung des urkundlichen Teils in einem Registereintrag. * *
Java class for TBeurkundung complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TBeurkundung">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="StAmtName" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
* <element name="Behoerde" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Ort" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="DatumEintrag" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <element name="DatumWirksamkeit" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="NameUrkundsperson" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin"/>
* <element name="Amtsbezeichnung" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TBeurkundung", propOrder = {
"stAmtName",
"behoerde",
"ort",
"datumEintrag",
"datumWirksamkeit",
"nameUrkundsperson",
"amtsbezeichnung"
})
public class TBeurkundung {
@XmlElement(name = "StAmtName", required = true)
protected String stAmtName;
@XmlElement(name = "Behoerde")
protected String behoerde;
@XmlElement(name = "Ort")
protected String ort;
@XmlElement(name = "DatumEintrag", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar datumEintrag;
@XmlElement(name = "DatumWirksamkeit")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar datumWirksamkeit;
@XmlElement(name = "NameUrkundsperson", required = true)
protected String nameUrkundsperson;
@XmlElement(name = "Amtsbezeichnung")
protected String amtsbezeichnung;
/**
* Gets the value of the stAmtName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStAmtName() {
return stAmtName;
}
/**
* Sets the value of the stAmtName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStAmtName(String value) {
this.stAmtName = value;
}
/**
* Gets the value of the behoerde property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBehoerde() {
return behoerde;
}
/**
* Sets the value of the behoerde property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBehoerde(String value) {
this.behoerde = value;
}
/**
* Gets the value of the ort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrt() {
return ort;
}
/**
* Sets the value of the ort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrt(String value) {
this.ort = value;
}
/**
* Gets the value of the datumEintrag property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatumEintrag() {
return datumEintrag;
}
/**
* Sets the value of the datumEintrag property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatumEintrag(XMLGregorianCalendar value) {
this.datumEintrag = value;
}
/**
* Gets the value of the datumWirksamkeit property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatumWirksamkeit() {
return datumWirksamkeit;
}
/**
* Sets the value of the datumWirksamkeit property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatumWirksamkeit(XMLGregorianCalendar value) {
this.datumWirksamkeit = value;
}
/**
* Gets the value of the nameUrkundsperson property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNameUrkundsperson() {
return nameUrkundsperson;
}
/**
* Sets the value of the nameUrkundsperson property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNameUrkundsperson(String value) {
this.nameUrkundsperson = value;
}
/**
* Gets the value of the amtsbezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAmtsbezeichnung() {
return amtsbezeichnung;
}
/**
* Sets the value of the amtsbezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAmtsbezeichnung(String value) {
this.amtsbezeichnung = value;
}
}