package at.gv.util.xsd.misstork; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
Java-Klasse für anonymous complex type. * *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* <element name="Info" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"errorCode",
"info"
})
@XmlRootElement(name = "MisStorkError")
public class MisStorkError {
@XmlElement(name = "ErrorCode", required = true)
protected Object errorCode;
@XmlElement(name = "Info", required = true)
protected Object info;
/**
* Ruft den Wert der errorCode-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getErrorCode() {
return errorCode;
}
/**
* Legt den Wert der errorCode-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setErrorCode(Object value) {
this.errorCode = value;
}
/**
* Ruft den Wert der info-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getInfo() {
return info;
}
/**
* Legt den Wert der info-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setInfo(Object value) {
this.info = value;
}
}