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.oob;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlAttribute;
014 import javax.xml.bind.annotation.XmlElement;
015 import javax.xml.bind.annotation.XmlRootElement;
016 import javax.xml.bind.annotation.XmlType;
017
018
019 /**
020 * <p>Java class for anonymous complex type.
021 *
022 * <p>The following schema fragment specifies the expected content contained within this class.
023 *
024 * <pre>
025 * <complexType>
026 * <complexContent>
027 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028 * <sequence>
029 * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
030 * <element name="desc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
031 * </sequence>
032 * <attribute name="sid" type="{http://www.w3.org/2001/XMLSchema}string" />
033 * </restriction>
034 * </complexContent>
035 * </complexType>
036 * </pre>
037 *
038 *
039 */
040 @XmlAccessorType(XmlAccessType.FIELD)
041 @XmlType(name = "", propOrder = {
042 "url",
043 "desc"
044 })
045 @XmlRootElement(name = "query")
046 public class Query {
047
048 @XmlElement(required = true)
049 protected String url;
050 protected String desc;
051 @XmlAttribute
052 protected String sid;
053
054 /**
055 * Gets the value of the url property.
056 *
057 * @return
058 * possible object is
059 * {@link String }
060 *
061 */
062 public String getUrl() {
063 return url;
064 }
065
066 /**
067 * Sets the value of the url property.
068 *
069 * @param value
070 * allowed object is
071 * {@link String }
072 *
073 */
074 public void setUrl(String value) {
075 this.url = value;
076 }
077
078 /**
079 * Gets the value of the desc property.
080 *
081 * @return
082 * possible object is
083 * {@link String }
084 *
085 */
086 public String getDesc() {
087 return desc;
088 }
089
090 /**
091 * Sets the value of the desc property.
092 *
093 * @param value
094 * allowed object is
095 * {@link String }
096 *
097 */
098 public void setDesc(String value) {
099 this.desc = value;
100 }
101
102 /**
103 * Gets the value of the sid property.
104 *
105 * @return
106 * possible object is
107 * {@link String }
108 *
109 */
110 public String getSid() {
111 return sid;
112 }
113
114 /**
115 * Sets the value of the sid property.
116 *
117 * @param value
118 * allowed object is
119 * {@link String }
120 *
121 */
122 public void setSid(String value) {
123 this.sid = value;
124 }
125
126 }