package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Die Ergebnisse einer Suche nach einem Eintrag, dessen EintragsId nicht bekannt ist, wird in * Form von EintragsInfos organisiert. Es handelt sich um die allgemeinen Merkmale eines Eintrags, egal aus welchem der vier Register er stammt. * *
Java class for TEintragsInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TEintragsInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="EintragsId" type="{http://www.fh-giessen.de/epr/Container/v1}TEintragsId"/>
* <element name="Sperrvermerk" type="{http://www.fh-giessen.de/epr/Container/v1}TSperrvermerkArt" minOccurs="0"/>
* <element name="Standesamt" type="{http://www.fh-giessen.de/epr/latinchars}String.Latin" minOccurs="0"/>
* <element name="EreignisDatum" type="{http://www.fh-giessen.de/epr/Container/v1}TErwDatum" minOccurs="0"/>
* <element name="EreignisOrt" 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="Stillgelegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEintragsInfo", propOrder = {
"eintragsId",
"sperrvermerk",
"standesamt",
"ereignisDatum",
"ereignisOrt",
"land",
"stillgelegt"
})
@XmlSeeAlso({
TGEintragsInfo.class,
TELEintragsInfo.class,
TSEintragsInfo.class
})
public abstract class TEintragsInfo {
@XmlElement(name = "EintragsId", required = true)
protected TEintragsId eintragsId;
@XmlElement(name = "Sperrvermerk")
protected String sperrvermerk;
@XmlElement(name = "Standesamt")
protected String standesamt;
@XmlElement(name = "EreignisDatum")
protected String ereignisDatum;
@XmlElement(name = "EreignisOrt")
protected String ereignisOrt;
@XmlElement(name = "Land")
protected String land;
@XmlElement(name = "Stillgelegt")
protected boolean stillgelegt;
/**
* Gets the value of the eintragsId property.
*
* @return
* possible object is
* {@link TEintragsId }
*
*/
public TEintragsId getEintragsId() {
return eintragsId;
}
/**
* Sets the value of the eintragsId property.
*
* @param value
* allowed object is
* {@link TEintragsId }
*
*/
public void setEintragsId(TEintragsId value) {
this.eintragsId = value;
}
/**
* Gets the value of the sperrvermerk property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSperrvermerk() {
return sperrvermerk;
}
/**
* Sets the value of the sperrvermerk property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSperrvermerk(String value) {
this.sperrvermerk = value;
}
/**
* Gets the value of the standesamt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStandesamt() {
return standesamt;
}
/**
* Sets the value of the standesamt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStandesamt(String value) {
this.standesamt = value;
}
/**
* Gets the value of the ereignisDatum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEreignisDatum() {
return ereignisDatum;
}
/**
* Sets the value of the ereignisDatum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEreignisDatum(String value) {
this.ereignisDatum = value;
}
/**
* Gets the value of the ereignisOrt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEreignisOrt() {
return ereignisOrt;
}
/**
* Sets the value of the ereignisOrt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEreignisOrt(String value) {
this.ereignisOrt = 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 stillgelegt property.
*
*/
public boolean isStillgelegt() {
return stillgelegt;
}
/**
* Sets the value of the stillgelegt property.
*
*/
public void setStillgelegt(boolean value) {
this.stillgelegt = value;
}
}