
org.jabber.protocol.muc_owner.Query Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-146
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.06.09 at 04:27:03 AM BST
//
package org.jabber.protocol.muc_owner;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import jabber.x.data.X;
/**
* 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 minOccurs="0">
* <element ref="{jabber:x:data}x"/>
* <element ref="{http://jabber.org/protocol/muc#owner}destroy"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"x",
"destroy"
})
@XmlRootElement(name = "query")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2010-06-09T03:53:30+0000", comments = "hudson-jaxb-ri-2.2-146 uk.org.retep.tools:jaxb:10.6")
public class Query {
@XmlElement(namespace = "jabber:x:data")
protected X x;
protected Destroy destroy;
/**
* Gets the value of the x property.
*
* @return
* possible object is
* {@link X }
*
*/
public X getX() {
return x;
}
/**
* Sets the value of the x property.
*
* @param value
* allowed object is
* {@link X }
*
*/
public void setX(X value) {
this.x = value;
}
/**
* Gets the value of the destroy property.
*
* @return
* possible object is
* {@link Destroy }
*
*/
public Destroy getDestroy() {
return destroy;
}
/**
* Sets the value of the destroy property.
*
* @param value
* allowed object is
* {@link Destroy }
*
*/
public void setDestroy(Destroy value) {
this.destroy = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy