package at.gv.util.xsd.mms; 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.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; 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">
* <choice>
* <sequence>
* <element name="bPK" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="bPKType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Mandates">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence maxOccurs="unbounded">
* <element name="Mandate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <sequence>
* <element name="ErrorResponse">
* <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 = {
"bpk",
"bpkType",
"mandates",
"errorResponse"
})
@XmlRootElement(name = "GetMandatesResponse")
public class GetMandatesResponse {
@XmlElement(name = "bPK")
protected String bpk;
@XmlElement(name = "bPKType")
protected String bpkType;
@XmlElement(name = "Mandates")
protected GetMandatesResponse.Mandates mandates;
@XmlElement(name = "ErrorResponse")
protected GetMandatesResponse.ErrorResponse errorResponse;
/**
* Ruft den Wert der bpk-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBPK() {
return bpk;
}
/**
* Legt den Wert der bpk-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBPK(String value) {
this.bpk = value;
}
/**
* Ruft den Wert der bpkType-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBPKType() {
return bpkType;
}
/**
* Legt den Wert der bpkType-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBPKType(String value) {
this.bpkType = value;
}
/**
* 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 errorResponse-Eigenschaft ab.
*
* @return
* possible object is
* {@link GetMandatesResponse.ErrorResponse }
*
*/
public GetMandatesResponse.ErrorResponse getErrorResponse() {
return errorResponse;
}
/**
* Legt den Wert der errorResponse-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link GetMandatesResponse.ErrorResponse }
*
*/
public void setErrorResponse(GetMandatesResponse.ErrorResponse value) {
this.errorResponse = 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 ErrorResponse {
@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">
* <element name="Mandate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"mandate"
})
public static class Mandates {
@XmlElement(name = "Mandate", required = true)
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
* byte[]
*
*/
public List