package de.fh_giessen.epr.wsregister.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; /** * Behälter, in dem das Registerverfahren Statusangaben zu einem Eintrag ausliefert. * *
Java class for TEintragStatus complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TEintragStatus">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Gesperrt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="SperreDurch" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="LaufendeNacherfassung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="FortfuehrungsfristUeberschritten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="Stillgelegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TEintragStatus", propOrder = {
"gesperrt",
"sperreDurch",
"laufendeNacherfassung",
"fortfuehrungsfristUeberschritten",
"stillgelegt"
})
public class TEintragStatus {
@XmlElement(name = "Gesperrt")
protected boolean gesperrt;
@XmlElement(name = "SperreDurch")
protected String sperreDurch;
@XmlElement(name = "LaufendeNacherfassung")
protected boolean laufendeNacherfassung;
@XmlElement(name = "FortfuehrungsfristUeberschritten")
protected boolean fortfuehrungsfristUeberschritten;
@XmlElement(name = "Stillgelegt")
protected boolean stillgelegt;
/**
* Gets the value of the gesperrt property.
*
*/
public boolean isGesperrt() {
return gesperrt;
}
/**
* Sets the value of the gesperrt property.
*
*/
public void setGesperrt(boolean value) {
this.gesperrt = value;
}
/**
* Gets the value of the sperreDurch property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSperreDurch() {
return sperreDurch;
}
/**
* Sets the value of the sperreDurch property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSperreDurch(String value) {
this.sperreDurch = value;
}
/**
* Gets the value of the laufendeNacherfassung property.
*
*/
public boolean isLaufendeNacherfassung() {
return laufendeNacherfassung;
}
/**
* Sets the value of the laufendeNacherfassung property.
*
*/
public void setLaufendeNacherfassung(boolean value) {
this.laufendeNacherfassung = value;
}
/**
* Gets the value of the fortfuehrungsfristUeberschritten property.
*
*/
public boolean isFortfuehrungsfristUeberschritten() {
return fortfuehrungsfristUeberschritten;
}
/**
* Sets the value of the fortfuehrungsfristUeberschritten property.
*
*/
public void setFortfuehrungsfristUeberschritten(boolean value) {
this.fortfuehrungsfristUeberschritten = 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;
}
}