All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jabber.protocol.muc.History Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2007.03.23 at 05:33:02 PM UTC 
//


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.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 protected Integer maxchars; @XmlAttribute protected Integer maxstanzas; @XmlAttribute protected Integer seconds; @XmlAttribute 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy