jabber.iq.pass.Query Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2007.03.23 at 05:33:02 PM UTC
//
package jabber.iq.pass;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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">
* <choice maxOccurs="unbounded" minOccurs="0">
* <element name="client" type="{jabber:iq:pass}PassEntity"/>
* <element name="close" type="{jabber:iq:pass}empty"/>
* <element name="expire" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* <element name="oneshot" type="{jabber:iq:pass}empty"/>
* <element name="proxy" type="{jabber:iq:pass}PassEntity"/>
* <element name="server" type="{jabber:iq:pass}PassEntity"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"clientOrCloseOrExpire"
})
@XmlRootElement(name = "query")
public class Query {
@XmlElementRefs({
@XmlElementRef(name = "oneshot", namespace = "jabber:iq:pass", type = JAXBElement.class),
@XmlElementRef(name = "server", namespace = "jabber:iq:pass", type = JAXBElement.class),
@XmlElementRef(name = "proxy", namespace = "jabber:iq:pass", type = JAXBElement.class),
@XmlElementRef(name = "client", namespace = "jabber:iq:pass", type = JAXBElement.class),
@XmlElementRef(name = "close", namespace = "jabber:iq:pass", type = JAXBElement.class),
@XmlElementRef(name = "expire", namespace = "jabber:iq:pass", type = JAXBElement.class)
})
protected List> clientOrCloseOrExpire;
/**
* Gets the value of the clientOrCloseOrExpire 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 clientOrCloseOrExpire property.
*
*
* For example, to add a new item, do as follows:
*
* getClientOrCloseOrExpire().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link PassEntity }{@code >}
* {@link JAXBElement }{@code <}{@link PassEntity }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link PassEntity }{@code >}
*
*
*/
public List> getClientOrCloseOrExpire() {
if (clientOrCloseOrExpire == null) {
clientOrCloseOrExpire = new ArrayList>();
}
return this.clientOrCloseOrExpire;
}
}