summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/zkopf/BulkAnswerType.java143
1 files changed, 143 insertions, 0 deletions
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;
+
+
+/**
+ * <p>Java class for BulkAnswerType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="BulkAnswerType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;sequence>
+ * &lt;element name="ZUSEUrl" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;sequence>
+ * &lt;element name="MIMEType" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;sequence>
+ * &lt;element name="Answer" type="{http://reference.e-government.gv.at/namespaces/zustellung/kopf}AnswerType" maxOccurs="unbounded"/>
+ * &lt;/sequence>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "BulkAnswerType", propOrder = {
+ "zuseUrl",
+ "mimeType",
+ "answer"
+})
+public class BulkAnswerType {
+
+ @XmlElement(name = "ZUSEUrl")
+ @XmlSchemaType(name = "anyURI")
+ protected List<String> zuseUrl;
+ @XmlElement(name = "MIMEType")
+ protected List<String> mimeType;
+ @XmlElement(name = "Answer", required = true)
+ protected List<AnswerType> answer;
+
+ /**
+ * Gets the value of the zuseUrl property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the zuseUrl property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getZUSEUrl().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List<String> getZUSEUrl() {
+ if (zuseUrl == null) {
+ zuseUrl = new ArrayList<String>();
+ }
+ return this.zuseUrl;
+ }
+
+ /**
+ * Gets the value of the mimeType property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the mimeType property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getMIMEType().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List<String> getMIMEType() {
+ if (mimeType == null) {
+ mimeType = new ArrayList<String>();
+ }
+ return this.mimeType;
+ }
+
+ /**
+ * Gets the value of the answer property.
+ *
+ * <p>
+ * 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 <CODE>set</CODE> method for the answer property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getAnswer().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link AnswerType }
+ *
+ *
+ */
+ public List<AnswerType> getAnswer() {
+ if (answer == null) {
+ answer = new ArrayList<AnswerType>();
+ }
+ return this.answer;
+ }
+
+}