summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java118
1 files changed, 118 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java b/src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java
new file mode 100644
index 0000000..4a1c75d
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java
@@ -0,0 +1,118 @@
+
+package at.gv.util.xsd.mzs;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for DeliveryNotificationType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="DeliveryNotificationType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Success"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Error"/>
+ * &lt;element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}DeliveryStatement"/>
+ * &lt;/choice>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DeliveryNotificationType", propOrder = {
+ "success",
+ "error",
+ "deliveryStatement"
+})
+public class DeliveryNotificationType {
+
+ @XmlElement(name = "Success")
+ protected SuccessType success;
+ @XmlElement(name = "Error")
+ protected ErrorType error;
+ @XmlElement(name = "DeliveryStatement")
+ protected DeliveryStatementType deliveryStatement;
+
+ /**
+ * Gets the value of the success property.
+ *
+ * @return
+ * possible object is
+ * {@link SuccessType }
+ *
+ */
+ public SuccessType getSuccess() {
+ return success;
+ }
+
+ /**
+ * Sets the value of the success property.
+ *
+ * @param value
+ * allowed object is
+ * {@link SuccessType }
+ *
+ */
+ public void setSuccess(SuccessType value) {
+ this.success = value;
+ }
+
+ /**
+ * Gets the value of the error property.
+ *
+ * @return
+ * possible object is
+ * {@link ErrorType }
+ *
+ */
+ public ErrorType getError() {
+ return error;
+ }
+
+ /**
+ * Sets the value of the error property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ErrorType }
+ *
+ */
+ public void setError(ErrorType value) {
+ this.error = value;
+ }
+
+ /**
+ * Gets the value of the deliveryStatement property.
+ *
+ * @return
+ * possible object is
+ * {@link DeliveryStatementType }
+ *
+ */
+ public DeliveryStatementType getDeliveryStatement() {
+ return deliveryStatement;
+ }
+
+ /**
+ * Sets the value of the deliveryStatement property.
+ *
+ * @param value
+ * allowed object is
+ * {@link DeliveryStatementType }
+ *
+ */
+ public void setDeliveryStatement(DeliveryStatementType value) {
+ this.deliveryStatement = value;
+ }
+
+}