From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../gv/util/xsd/mzs/DeliveryNotificationType.java | 118 +++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java (limited to 'src/main/java/at/gv/util/xsd/mzs/DeliveryNotificationType.java') 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; + + +/** + *

Java class for DeliveryNotificationType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DeliveryNotificationType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Success"/>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Error"/>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}DeliveryStatement"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@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; + } + +} -- cgit v1.2.3