package at.gv.util.xsd.mis_v2; 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-Klasse für GetMandatesErrorType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="GetMandatesErrorType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
 *         <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetMandatesErrorType", propOrder = { "code", "text" }) public class GetMandatesErrorType { @XmlElement(name = "Code", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger code; @XmlElement(name = "Text", required = true) protected String text; /** * Ruft den Wert der code-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCode() { return code; } /** * Legt den Wert der code-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setCode(BigInteger value) { this.code = value; } /** * Ruft den Wert der text-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Legt den Wert der text-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } }