All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jabber.iq.gateway.Query Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.10.02 at 06:09:56 PM CEST 
//


package jabber.iq.gateway;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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>
 *         <sequence>
 *           <element name="desc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *           <element name="prompt" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         </sequence>
 *         <element name="jid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "desc", "prompt", "jid" }) @XmlRootElement(name = "query") public class Query { protected String desc; protected String prompt; protected String jid; /** * Gets the value of the desc property. * * @return * possible object is * {@link String } * */ public String getDesc() { return desc; } /** * Sets the value of the desc property. * * @param value * allowed object is * {@link String } * */ public void setDesc(String value) { this.desc = value; } /** * Gets the value of the prompt property. * * @return * possible object is * {@link String } * */ public String getPrompt() { return prompt; } /** * Sets the value of the prompt property. * * @param value * allowed object is * {@link String } * */ public void setPrompt(String value) { this.prompt = value; } /** * Gets the value of the jid property. * * @return * possible object is * {@link String } * */ public String getJid() { return jid; } /** * Sets the value of the jid property. * * @param value * allowed object is * {@link String } * */ public void setJid(String value) { this.jid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy