aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/at/gv/util/xsd/mis/MandateIssueResponseType.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/idserverlib/src/main/java/at/gv/util/xsd/mis/MandateIssueResponseType.java')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/util/xsd/mis/MandateIssueResponseType.java442
1 files changed, 0 insertions, 442 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/util/xsd/mis/MandateIssueResponseType.java b/id/server/idserverlib/src/main/java/at/gv/util/xsd/mis/MandateIssueResponseType.java
deleted file mode 100644
index 7e55becac..000000000
--- a/id/server/idserverlib/src/main/java/at/gv/util/xsd/mis/MandateIssueResponseType.java
+++ /dev/null
@@ -1,442 +0,0 @@
-
-package at.gv.util.xsd.mis;
-
-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.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.XmlValue;
-
-
-/**
- * <p>Java class for MandateIssueResponseType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="MandateIssueResponseType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;choice>
- * &lt;sequence>
- * &lt;element name="SessionID" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="GuiRedirectURL" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
- * &lt;/sequence>
- * &lt;element name="Mandates">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Mandate" maxOccurs="unbounded">
- * &lt;complexType>
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>base64Binary">
- * &lt;attribute name="ProfessionalRepresentative" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;attribute name="OWbPK" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;element name="Error">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
- * &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/choice>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "MandateIssueResponseType", propOrder = {
- "sessionID",
- "guiRedirectURL",
- "mandates",
- "error"
-})
-public class MandateIssueResponseType {
-
- @XmlElement(name = "SessionID")
- protected String sessionID;
- @XmlElement(name = "GuiRedirectURL")
- @XmlSchemaType(name = "anyURI")
- protected String guiRedirectURL;
- @XmlElement(name = "Mandates")
- protected MandateIssueResponseType.Mandates mandates;
- @XmlElement(name = "Error")
- protected MandateIssueResponseType.Error error;
-
- /**
- * Gets the value of the sessionID property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getSessionID() {
- return sessionID;
- }
-
- /**
- * Sets the value of the sessionID property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setSessionID(String value) {
- this.sessionID = value;
- }
-
- /**
- * Gets the value of the guiRedirectURL property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getGuiRedirectURL() {
- return guiRedirectURL;
- }
-
- /**
- * Sets the value of the guiRedirectURL property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setGuiRedirectURL(String value) {
- this.guiRedirectURL = value;
- }
-
- /**
- * Gets the value of the mandates property.
- *
- * @return
- * possible object is
- * {@link MandateIssueResponseType.Mandates }
- *
- */
- public MandateIssueResponseType.Mandates getMandates() {
- return mandates;
- }
-
- /**
- * Sets the value of the mandates property.
- *
- * @param value
- * allowed object is
- * {@link MandateIssueResponseType.Mandates }
- *
- */
- public void setMandates(MandateIssueResponseType.Mandates value) {
- this.mandates = value;
- }
-
- /**
- * Gets the value of the error property.
- *
- * @return
- * possible object is
- * {@link MandateIssueResponseType.Error }
- *
- */
- public MandateIssueResponseType.Error getError() {
- return error;
- }
-
- /**
- * Sets the value of the error property.
- *
- * @param value
- * allowed object is
- * {@link MandateIssueResponseType.Error }
- *
- */
- public void setError(MandateIssueResponseType.Error value) {
- this.error = value;
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
- * &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "code",
- "text"
- })
- public static class Error {
-
- @XmlElement(name = "Code", required = true)
- @XmlSchemaType(name = "positiveInteger")
- protected BigInteger code;
- @XmlElement(name = "Text", required = true)
- protected String text;
-
- /**
- * 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;
- }
-
- /**
- * Gets the value of the text property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getText() {
- return text;
- }
-
- /**
- * Sets the value of the text property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setText(String value) {
- this.text = value;
- }
-
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Mandate" maxOccurs="unbounded">
- * &lt;complexType>
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>base64Binary">
- * &lt;attribute name="ProfessionalRepresentative" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;attribute name="OWbPK" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "mandate"
- })
- public static class Mandates {
-
- @XmlElement(name = "Mandate", required = true)
- protected List<MandateIssueResponseType.Mandates.Mandate> mandate;
-
- /**
- * Gets the value of the mandate property.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the mandate property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getMandate().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link MandateIssueResponseType.Mandates.Mandate }
- *
- *
- */
- public List<MandateIssueResponseType.Mandates.Mandate> getMandate() {
- if (mandate == null) {
- mandate = new ArrayList<MandateIssueResponseType.Mandates.Mandate>();
- }
- return this.mandate;
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>base64Binary">
- * &lt;attribute name="ProfessionalRepresentative" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;attribute name="OWbPK" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "value"
- })
- public static class Mandate {
-
- @XmlValue
- protected byte[] value;
- @XmlAttribute(name = "ProfessionalRepresentative")
- protected String professionalRepresentative;
- @XmlAttribute(name = "OWbPK")
- protected String oWbPK;
-
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * byte[]
- */
- public byte[] getValue() {
- return value;
- }
-
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * byte[]
- */
- public void setValue(byte[] value) {
- this.value = value;
- }
-
- /**
- * Gets the value of the professionalRepresentative property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getProfessionalRepresentative() {
- return professionalRepresentative;
- }
-
- /**
- * Sets the value of the professionalRepresentative property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setProfessionalRepresentative(String value) {
- this.professionalRepresentative = value;
- }
-
- /**
- * Gets the value of the oWbPK property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getOWbPK() {
- return oWbPK;
- }
-
- /**
- * Sets the value of the oWbPK property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setOWbPK(String value) {
- this.oWbPK = value;
- }
-
- }
-
- }
-
-}