summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/omsp/SimpleResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/omsp/SimpleResponse.java')
-rw-r--r--src/main/java/at/gv/util/xsd/omsp/SimpleResponse.java156
1 files changed, 156 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/omsp/SimpleResponse.java b/src/main/java/at/gv/util/xsd/omsp/SimpleResponse.java
new file mode 100644
index 0000000..68007a1
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/omsp/SimpleResponse.java
@@ -0,0 +1,156 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2011.03.04 at 04:57:33 PM MEZ
+//
+
+
+package at.gv.util.xsd.omsp;
+
+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.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <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 ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}MandateID"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}StatusDate"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}Status"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/moavv/20070102#}RevocationDate"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+ "mandateID",
+ "statusDate",
+ "status",
+ "revocationDate"
+})
+@XmlRootElement(name = "SimpleResponse")
+public class SimpleResponse {
+
+ @XmlElement(name = "MandateID", required = true)
+ protected String mandateID;
+ @XmlElement(name = "StatusDate", required = true)
+ protected XMLGregorianCalendar statusDate;
+ @XmlElement(name = "Status", required = true)
+ protected String status;
+ @XmlElement(name = "RevocationDate", required = true)
+ protected XMLGregorianCalendar revocationDate;
+
+ /**
+ * Gets the value of the mandateID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMandateID() {
+ return mandateID;
+ }
+
+ /**
+ * Sets the value of the mandateID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMandateID(String value) {
+ this.mandateID = value;
+ }
+
+ /**
+ * Gets the value of the statusDate property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getStatusDate() {
+ return statusDate;
+ }
+
+ /**
+ * Sets the value of the statusDate property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setStatusDate(XMLGregorianCalendar value) {
+ this.statusDate = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setStatus(String value) {
+ this.status = value;
+ }
+
+ /**
+ * Gets the value of the revocationDate property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getRevocationDate() {
+ return revocationDate;
+ }
+
+ /**
+ * Sets the value of the revocationDate property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setRevocationDate(XMLGregorianCalendar value) {
+ this.revocationDate = value;
+ }
+
+}