From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../java/at/gv/util/xsd/zkopf/BulkAnswerType.java | 143 +++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java (limited to 'src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java') diff --git a/src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java b/src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java new file mode 100644 index 0000000..33f4005 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java @@ -0,0 +1,143 @@ + +package at.gv.util.xsd.zkopf; + +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.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BulkAnswerType complex type. + * + *

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

+ * <complexType name="BulkAnswerType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <sequence>
+ *           <element name="ZUSEUrl" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
+ *         </sequence>
+ *         <sequence>
+ *           <element name="MIMEType" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         </sequence>
+ *         <sequence>
+ *           <element name="Answer" type="{http://reference.e-government.gv.at/namespaces/zustellung/kopf}AnswerType" maxOccurs="unbounded"/>
+ *         </sequence>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BulkAnswerType", propOrder = { + "zuseUrl", + "mimeType", + "answer" +}) +public class BulkAnswerType { + + @XmlElement(name = "ZUSEUrl") + @XmlSchemaType(name = "anyURI") + protected List zuseUrl; + @XmlElement(name = "MIMEType") + protected List mimeType; + @XmlElement(name = "Answer", required = true) + protected List answer; + + /** + * Gets the value of the zuseUrl property. + * + *

+ * 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 set method for the zuseUrl property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getZUSEUrl().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getZUSEUrl() { + if (zuseUrl == null) { + zuseUrl = new ArrayList(); + } + return this.zuseUrl; + } + + /** + * Gets the value of the mimeType property. + * + *

+ * 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 set method for the mimeType property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getMIMEType().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getMIMEType() { + if (mimeType == null) { + mimeType = new ArrayList(); + } + return this.mimeType; + } + + /** + * Gets the value of the answer property. + * + *

+ * 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 set method for the answer property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getAnswer().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AnswerType } + * + * + */ + public List getAnswer() { + if (answer == null) { + answer = new ArrayList(); + } + return this.answer; + } + +} -- cgit v1.2.3