summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/zkopf/BulkQueryType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/zkopf/BulkQueryType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/zkopf/BulkQueryType.java164
1 files changed, 164 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/zkopf/BulkQueryType.java b/src/main/java/at/gv/util/xsd/zkopf/BulkQueryType.java
new file mode 100644
index 0000000..fb6ec03
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zkopf/BulkQueryType.java
@@ -0,0 +1,164 @@
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * <p>Java class for BulkQueryType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="BulkQueryType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;sequence maxOccurs="unbounded">
+ * &lt;element name="Query" type="{http://reference.e-government.gv.at/namespaces/zustellung/kopf}QueryType"/>
+ * &lt;/sequence>
+ * &lt;/choice>
+ * &lt;attribute name="type">
+ * &lt;simpleType>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}token">
+ * &lt;enumeration value="mass"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * &lt;/attribute>
+ * &lt;attribute name="ProfileID" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * &lt;attribute name="private" type="{http://www.w3.org/2001/XMLSchema}boolean" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "BulkQueryType", propOrder = {
+ "query"
+})
+public class BulkQueryType {
+
+ @XmlElement(name = "Query")
+ protected List<QueryType> query;
+ @XmlAttribute
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String type;
+ @XmlAttribute(name = "ProfileID")
+ @XmlSchemaType(name = "anySimpleType")
+ protected String profileID;
+ @XmlAttribute(name = "private")
+ protected Boolean _private;
+
+ /**
+ * Gets the value of the query 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 query property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getQuery().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link QueryType }
+ *
+ *
+ */
+ public List<QueryType> getQuery() {
+ if (query == null) {
+ query = new ArrayList<QueryType>();
+ }
+ return this.query;
+ }
+
+ /**
+ * Gets the value of the type property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getType() {
+ return type;
+ }
+
+ /**
+ * Sets the value of the type property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setType(String value) {
+ this.type = value;
+ }
+
+ /**
+ * Gets the value of the profileID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getProfileID() {
+ return profileID;
+ }
+
+ /**
+ * Sets the value of the profileID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProfileID(String value) {
+ this.profileID = value;
+ }
+
+ /**
+ * Gets the value of the private property.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isPrivate() {
+ return _private;
+ }
+
+ /**
+ * Sets the value of the private property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setPrivate(Boolean value) {
+ this._private = value;
+ }
+
+}