org.jabber.protocol.muc.History 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.muc;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <simpleContent>
* <extension base="<http://jabber.org/protocol/muc>empty">
* <attribute name="maxchars" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="maxstanzas" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="seconds" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="since" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "history")
public class History {
@XmlValue
protected String value;
@XmlAttribute(name = "maxchars")
protected Integer maxchars;
@XmlAttribute(name = "maxstanzas")
protected Integer maxstanzas;
@XmlAttribute(name = "seconds")
protected Integer seconds;
@XmlAttribute(name = "since")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar since;
/**
* 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 maxchars property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxchars() {
return maxchars;
}
/**
* Sets the value of the maxchars property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxchars(Integer value) {
this.maxchars = value;
}
/**
* Gets the value of the maxstanzas property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxstanzas() {
return maxstanzas;
}
/**
* Sets the value of the maxstanzas property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxstanzas(Integer value) {
this.maxstanzas = value;
}
/**
* Gets the value of the seconds property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSeconds() {
return seconds;
}
/**
* Sets the value of the seconds property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSeconds(Integer value) {
this.seconds = value;
}
/**
* Gets the value of the since property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSince() {
return since;
}
/**
* Sets the value of the since property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSince(XMLGregorianCalendar value) {
this.since = value;
}
}