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.XmlType; /** * The list of approved delivery agents * *

Java class for DeliveryAgentsType complex type. * *

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

 * <complexType name="DeliveryAgentsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DeliveryAgent" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="WebInterfaceURL">
 *                     <simpleType>
 *                       <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI">
 *                         <minLength value="1"/>
 *                         <whiteSpace value="collapse"/>
 *                       </restriction>
 *                     </simpleType>
 *                   </element>
 *                   <element name="WebServiceURL">
 *                     <simpleType>
 *                       <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI">
 *                         <minLength value="1"/>
 *                         <whiteSpace value="collapse"/>
 *                       </restriction>
 *                     </simpleType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeliveryAgentsType", propOrder = { "deliveryAgent" }) public class DeliveryAgentsType { @XmlElement(name = "DeliveryAgent", required = true) protected List deliveryAgent; /** * Gets the value of the deliveryAgent 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 deliveryAgent property. * *

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

     *    getDeliveryAgent().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DeliveryAgentsType.DeliveryAgent } * * */ public List getDeliveryAgent() { if (deliveryAgent == null) { deliveryAgent = new ArrayList(); } return this.deliveryAgent; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="WebInterfaceURL">
     *           <simpleType>
     *             <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI">
     *               <minLength value="1"/>
     *               <whiteSpace value="collapse"/>
     *             </restriction>
     *           </simpleType>
     *         </element>
     *         <element name="WebServiceURL">
     *           <simpleType>
     *             <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI">
     *               <minLength value="1"/>
     *               <whiteSpace value="collapse"/>
     *             </restriction>
     *           </simpleType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "webInterfaceURL", "webServiceURL" }) public static class DeliveryAgent { @XmlElement(name = "WebInterfaceURL", required = true) protected String webInterfaceURL; @XmlElement(name = "WebServiceURL", required = true) protected String webServiceURL; /** * Gets the value of the webInterfaceURL property. * * @return * possible object is * {@link String } * */ public String getWebInterfaceURL() { return webInterfaceURL; } /** * Sets the value of the webInterfaceURL property. * * @param value * allowed object is * {@link String } * */ public void setWebInterfaceURL(String value) { this.webInterfaceURL = value; } /** * Gets the value of the webServiceURL property. * * @return * possible object is * {@link String } * */ public String getWebServiceURL() { return webServiceURL; } /** * Sets the value of the webServiceURL property. * * @param value * allowed object is * {@link String } * */ public void setWebServiceURL(String value) { this.webServiceURL = value; } } }