package at.gv.util.xsd.zuserech; import java.math.BigInteger; 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; /** *

Java class for ErrorType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ErrorType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Info" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ErrorType", propOrder = { "info", "code" }) public class ErrorType { @XmlElement(name = "Info", required = true) protected String info; @XmlElement(name = "Code", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger code; /** * Gets the value of the info property. * * @return * possible object is * {@link String } * */ public String getInfo() { return info; } /** * Sets the value of the info property. * * @param value * allowed object is * {@link String } * */ public void setInfo(String value) { this.info = value; } /** * Gets the value of the code property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link BigInteger } * */ public void setCode(BigInteger value) { this.code = value; } }