// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2008.05.01 at 05:18:55 PM WEST // package org.openxdm.xcap.client.appusage.xcapcaps.jaxb; 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.XmlAnyElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="auids"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="auid" type="{urn:ietf:params:xml:ns:xcap-caps}auidType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="extensions"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="extension" type="{urn:ietf:params:xml:ns:xcap-caps}extensionType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="namespaces"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="namespace" type="{urn:ietf:params:xml:ns:xcap-caps}namespaceType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <any/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auids", "extensions", "namespaces", "any" }) @XmlRootElement(name = "xcap-caps") public class XcapCaps { @XmlElement(required = true) protected XcapCaps.Auids auids; @XmlElement(required = true) protected XcapCaps.Extensions extensions; @XmlElement(required = true) protected XcapCaps.Namespaces namespaces; @XmlAnyElement(lax = true) protected List<Object> any; /** * Gets the value of the auids property. * * @return * possible object is * {@link XcapCaps.Auids } * */ public XcapCaps.Auids getAuids() { return auids; } /** * Sets the value of the auids property. * * @param value * allowed object is * {@link XcapCaps.Auids } * */ public void setAuids(XcapCaps.Auids value) { this.auids = value; } /** * Gets the value of the extensions property. * * @return * possible object is * {@link XcapCaps.Extensions } * */ public XcapCaps.Extensions getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is * {@link XcapCaps.Extensions } * */ public void setExtensions(XcapCaps.Extensions value) { this.extensions = value; } /** * Gets the value of the namespaces property. * * @return * possible object is * {@link XcapCaps.Namespaces } * */ public XcapCaps.Namespaces getNamespaces() { return namespaces; } /** * Sets the value of the namespaces property. * * @param value * allowed object is * {@link XcapCaps.Namespaces } * */ public void setNamespaces(XcapCaps.Namespaces value) { this.namespaces = value; } /** * Gets the value of the any 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 any property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAny().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getAny() { if (any == null) { any = new ArrayList<Object>(); } return this.any; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="auid" type="{urn:ietf:params:xml:ns:xcap-caps}auidType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "auid" }) public static class Auids { protected List<String> auid; /** * Gets the value of the auid 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 auid property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAuid().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getAuid() { if (auid == null) { auid = new ArrayList<String>(); } return this.auid; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="extension" type="{urn:ietf:params:xml:ns:xcap-caps}extensionType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extension" }) public static class Extensions { protected List<String> extension; /** * Gets the value of the extension 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 extension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getExtension() { if (extension == null) { extension = new ArrayList<String>(); } return this.extension; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence maxOccurs="unbounded" minOccurs="0"> * <element name="namespace" type="{urn:ietf:params:xml:ns:xcap-caps}namespaceType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "namespace" }) public static class Namespaces { protected List<String> namespace; /** * Gets the value of the namespace 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 namespace property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNamespace().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getNamespace() { if (namespace == null) { namespace = new ArrayList<String>(); } return this.namespace; } } }