org.jabber.protocol.rsm.Set 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.rsm;
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">
* <sequence>
* <element name="after" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="before" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="count" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element ref="{http://jabber.org/protocol/rsm}first" minOccurs="0"/>
* <element name="index" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="last" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"after",
"before",
"count",
"first",
"index",
"last",
"max"
})
@XmlRootElement(name = "set")
public class Set {
protected String after;
protected String before;
protected Integer count;
protected First first;
protected Integer index;
protected String last;
protected Integer max;
/**
* Gets the value of the after property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAfter() {
return after;
}
/**
* Sets the value of the after property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAfter(String value) {
this.after = value;
}
/**
* Gets the value of the before property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBefore() {
return before;
}
/**
* Sets the value of the before property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBefore(String value) {
this.before = value;
}
/**
* Gets the value of the count property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCount() {
return count;
}
/**
* Sets the value of the count property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCount(Integer value) {
this.count = value;
}
/**
* Gets the value of the first property.
*
* @return
* possible object is
* {@link First }
*
*/
public First getFirst() {
return first;
}
/**
* Sets the value of the first property.
*
* @param value
* allowed object is
* {@link First }
*
*/
public void setFirst(First value) {
this.first = value;
}
/**
* Gets the value of the index property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getIndex() {
return index;
}
/**
* Sets the value of the index property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setIndex(Integer value) {
this.index = value;
}
/**
* Gets the value of the last property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLast() {
return last;
}
/**
* Sets the value of the last property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLast(String value) {
this.last = value;
}
/**
* Gets the value of the max property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMax() {
return max;
}
/**
* Sets the value of the max property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMax(Integer value) {
this.max = value;
}
}