From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../at/gv/util/xsd/mzs/DeliveryResponseType.java | 118 +++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/mzs/DeliveryResponseType.java (limited to 'src/main/java/at/gv/util/xsd/mzs/DeliveryResponseType.java') diff --git a/src/main/java/at/gv/util/xsd/mzs/DeliveryResponseType.java b/src/main/java/at/gv/util/xsd/mzs/DeliveryResponseType.java new file mode 100644 index 0000000..0a206d3 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/mzs/DeliveryResponseType.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 DeliveryResponseType complex type. + * + *

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

+ * <complexType name="DeliveryResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <choice>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}PartialSuccess"/>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Success"/>
+ *         <element ref="{http://reference.e-government.gv.at/namespace/moazs10/app2mzs#}Error"/>
+ *       </choice>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DeliveryResponseType", propOrder = { + "partialSuccess", + "success", + "error" +}) +public class DeliveryResponseType { + + @XmlElement(name = "PartialSuccess") + protected PartialSuccessType partialSuccess; + @XmlElement(name = "Success") + protected SuccessType success; + @XmlElement(name = "Error") + protected ErrorType error; + + /** + * Gets the value of the partialSuccess property. + * + * @return + * possible object is + * {@link PartialSuccessType } + * + */ + public PartialSuccessType getPartialSuccess() { + return partialSuccess; + } + + /** + * Sets the value of the partialSuccess property. + * + * @param value + * allowed object is + * {@link PartialSuccessType } + * + */ + public void setPartialSuccess(PartialSuccessType value) { + this.partialSuccess = value; + } + + /** + * 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; + } + +} -- cgit v1.2.3