package at.gv.util.xsd.mis.usp; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** *
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"> * <choice> * <sequence> * <element name="Mandates"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="Mandate"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary"> * <attribute name="MandateFilter" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * </extension> * </simpleContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <sequence> * <element name="Error"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="Info" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </choice> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mandates", "error" }) @XmlRootElement(name = "GetMandatesResponse") public class GetMandatesResponse { @XmlElement(name = "Mandates") protected GetMandatesResponse.Mandates mandates; @XmlElement(name = "Error") protected GetMandatesResponse.Error error; /** * Ruft den Wert der mandates-Eigenschaft ab. * * @return * possible object is * {@link GetMandatesResponse.Mandates } * */ public GetMandatesResponse.Mandates getMandates() { return mandates; } /** * Legt den Wert der mandates-Eigenschaft fest. * * @param value * allowed object is * {@link GetMandatesResponse.Mandates } * */ public void setMandates(GetMandatesResponse.Mandates value) { this.mandates = value; } /** * Ruft den Wert der error-Eigenschaft ab. * * @return * possible object is * {@link GetMandatesResponse.Error } * */ public GetMandatesResponse.Error getError() { return error; } /** * Legt den Wert der error-Eigenschaft fest. * * @param value * allowed object is * {@link GetMandatesResponse.Error } * */ public void setError(GetMandatesResponse.Error value) { this.error = value; } /** *
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="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="Info" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "code", "info" }) public static class Error { @XmlElement(name = "Code", required = true) @XmlSchemaType(name = "positiveInteger") protected BigInteger code; @XmlElement(name = "Info", required = true) protected String info; /** * 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 info-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getInfo() { return info; } /** * Legt den Wert der info-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setInfo(String value) { this.info = value; } } /** *
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 maxOccurs="unbounded" minOccurs="0"> * <element name="Mandate"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary"> * <attribute name="MandateFilter" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * </extension> * </simpleContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "mandate" }) public static class Mandates { @XmlElement(name = "Mandate") protected List
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the mandate property.
*
*
* For example, to add a new item, do as follows: *
* getMandate().add(newItem); ** * *
* Objects of the following type(s) are allowed in the list
* {@link GetMandatesResponse.Mandates.Mandate }
*
*
*/
public List Java-Klasse für anonymous complex type.
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>base64Binary">
* <attribute name="MandateFilter" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
public static class Mandate {
@XmlValue
protected byte[] value;
@XmlAttribute(name = "MandateFilter")
@XmlSchemaType(name = "anySimpleType")
protected String mandateFilter;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* byte[]
*/
public byte[] getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* byte[]
*/
public void setValue(byte[] value) {
this.value = value;
}
/**
* Ruft den Wert der mandateFilter-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMandateFilter() {
return mandateFilter;
}
/**
* Legt den Wert der mandateFilter-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMandateFilter(String value) {
this.mandateFilter = value;
}
}
}
}