org.jabber.protocol.commands.Actions 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 org.jabber.protocol.commands;
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.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* 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">
* <sequence>
* <element name="prev" type="{http://jabber.org/protocol/commands}empty" minOccurs="0"/>
* <element name="next" type="{http://jabber.org/protocol/commands}empty" minOccurs="0"/>
* <element name="complete" type="{http://jabber.org/protocol/commands}empty" minOccurs="0"/>
* </sequence>
* <attribute name="execute">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
* <enumeration value="complete"/>
* <enumeration value="next"/>
* <enumeration value="prev"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"prev",
"next",
"complete"
})
@XmlRootElement(name = "actions")
public class Actions {
protected String prev;
protected String next;
protected String complete;
@XmlAttribute(name = "execute")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String execute;
/**
* Gets the value of the prev property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrev() {
return prev;
}
/**
* Sets the value of the prev property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrev(String value) {
this.prev = value;
}
/**
* Gets the value of the next property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNext() {
return next;
}
/**
* Sets the value of the next property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNext(String value) {
this.next = value;
}
/**
* Gets the value of the complete property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComplete() {
return complete;
}
/**
* Sets the value of the complete property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComplete(String value) {
this.complete = value;
}
/**
* Gets the value of the execute property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExecute() {
return execute;
}
/**
* Sets the value of the execute property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExecute(String value) {
this.execute = value;
}
}