jabber.x.conference.X Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.04 at 01:10:24 PM KST
//
package jabber.x.conference;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <simpleContent>
* <extension base="<jabber:x:conference>empty">
* <attribute name="continue" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="jid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="reason" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="thread" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "x")
public class X {
@XmlValue
protected String value;
@XmlAttribute(name = "continue")
protected Boolean _continue;
@XmlAttribute(name = "jid", required = true)
protected String jid;
@XmlAttribute(name = "password")
protected String password;
@XmlAttribute(name = "reason")
protected String reason;
@XmlAttribute(name = "thread")
protected String thread;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the continue property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isContinue() {
return _continue;
}
/**
* Sets the value of the continue property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setContinue(Boolean value) {
this._continue = 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;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReason(String value) {
this.reason = value;
}
/**
* Gets the value of the thread property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getThread() {
return thread;
}
/**
* Sets the value of the thread property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setThread(String value) {
this.thread = value;
}
}