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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; /** * In den Hinweisen kommen häufig Verweise auf andere Personenstandseinträge vor. Dieser Typ * beschreibt die Angaben zur Fundstelle eines Eintrags. * *
Java class for TEintragKurz complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TEintragKurz">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Behoerde" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Name" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="Land" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="RegisterArt" type="{http://www.fh-giessen.de/epr/Container/v1}TRegisterArt" minOccurs="0"/>
* <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
* <element name="EintragsNummer" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEintragKurz", propOrder = {
"behoerde",
"name",
"land",
"registerArt",
"jahr",
"eintragsNummer"
})
@XmlSeeAlso({
TEintrag.class
})
public class TEintragKurz {
@XmlElement(name = "Behoerde")
protected String behoerde;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "Land")
protected String land;
@XmlElement(name = "RegisterArt")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String registerArt;
@XmlElement(name = "Jahr")
@XmlSchemaType(name = "gYear")
protected XMLGregorianCalendar jahr;
@XmlElement(name = "EintragsNummer")
protected String eintragsNummer;
/**
* 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 name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the land property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLand() {
return land;
}
/**
* Sets the value of the land property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLand(String value) {
this.land = value;
}
/**
* Gets the value of the registerArt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegisterArt() {
return registerArt;
}
/**
* Sets the value of the registerArt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegisterArt(String value) {
this.registerArt = value;
}
/**
* Gets the value of the jahr property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getJahr() {
return jahr;
}
/**
* Sets the value of the jahr property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setJahr(XMLGregorianCalendar value) {
this.jahr = value;
}
/**
* Gets the value of the eintragsNummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEintragsNummer() {
return eintragsNummer;
}
/**
* Sets the value of the eintragsNummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEintragsNummer(String value) {
this.eintragsNummer = value;
}
}