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