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; /** *

Java class for BulkQueryType complex type. * *

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

 * <complexType name="BulkQueryType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <sequence maxOccurs="unbounded">
 *           <element name="Query" type="{http://reference.e-government.gv.at/namespaces/zustellung/kopf}QueryType"/>
 *         </sequence>
 *       </choice>
 *       <attribute name="type">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *             <enumeration value="mass"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="ProfileID" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *       <attribute name="private" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BulkQueryType", propOrder = { "query" }) public class BulkQueryType { @XmlElement(name = "Query") protected List 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. * *

* 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 query property. * *

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

     *    getQuery().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link QueryType } * * */ public List getQuery() { if (query == null) { query = new ArrayList(); } 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; } }