// // 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.12.22 at 02:49:21 PM WET // package org.mobicents.slee.sipevent.server.subscription.eventlist.rlmi; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.namespace.QName; /** * <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 ref="{urn:ietf:params:xml:ns:rlmi}name" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{urn:ietf:params:xml:ns:rlmi}resource" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="uri" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /> * <attribute name="fullState" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="cid" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "resource" }) @XmlRootElement(name = "list") public class List { protected java.util.List<Name> name; protected java.util.List<Resource> resource; @XmlAttribute(required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlAttribute(required = true) @XmlSchemaType(name = "unsignedInt") protected long version; @XmlAttribute(required = true) protected boolean fullState; @XmlAttribute protected String cid; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Gets the value of the name 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 name property. * * <p> * For example, to add a new item, do as follows: * <pre> * getName().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Name } * * */ public java.util.List<Name> getName() { if (name == null) { name = new ArrayList<Name>(); } return this.name; } /** * Gets the value of the resource 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 resource property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResource().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Resource } * * */ public java.util.List<Resource> getResource() { if (resource == null) { resource = new ArrayList<Resource>(); } return this.resource; } /** * Gets the value of the uri property. * * @return * possible object is * {@link String } * */ public String getUri() { return uri; } /** * Sets the value of the uri property. * * @param value * allowed object is * {@link String } * */ public void setUri(String value) { this.uri = value; } /** * Gets the value of the version property. * */ public long getVersion() { return version; } /** * Sets the value of the version property. * */ public void setVersion(long value) { this.version = value; } /** * Gets the value of the fullState property. * */ public boolean isFullState() { return fullState; } /** * Sets the value of the fullState property. * */ public void setFullState(boolean value) { this.fullState = value; } /** * Gets the value of the cid property. * * @return * possible object is * {@link String } * */ public String getCid() { return cid; } /** * Sets the value of the cid property. * * @param value * allowed object is * {@link String } * */ public void setCid(String value) { this.cid = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * * <p> * the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } }