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; } }