001 //
002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004 // Any modifications to this file will be lost upon recompilation of the source schema.
005 // Generated on: 2013.02.07 at 02:32:38 PM CET
006 //
007
008
009 package jabber.iq._private;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlAnyElement;
014 import javax.xml.bind.annotation.XmlRootElement;
015 import javax.xml.bind.annotation.XmlType;
016
017
018 /**
019 * <p>Java class for anonymous complex type.
020 *
021 * <p>The following schema fragment specifies the expected content contained within this class.
022 *
023 * <pre>
024 * <complexType>
025 * <complexContent>
026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027 * <sequence minOccurs="0">
028 * <any namespace='##other'/>
029 * </sequence>
030 * </restriction>
031 * </complexContent>
032 * </complexType>
033 * </pre>
034 *
035 *
036 */
037 @XmlAccessorType(XmlAccessType.FIELD)
038 @XmlType(name = "", propOrder = {
039 "any"
040 })
041 @XmlRootElement(name = "query")
042 public class Query {
043
044 @XmlAnyElement(lax = true)
045 protected Object any;
046
047 /**
048 * Gets the value of the any property.
049 *
050 * @return
051 * possible object is
052 * {@link Object }
053 *
054 */
055 public Object getAny() {
056 return any;
057 }
058
059 /**
060 * Sets the value of the any property.
061 *
062 * @param value
063 * allowed object is
064 * {@link Object }
065 *
066 */
067 public void setAny(Object value) {
068 this.any = value;
069 }
070
071 }