org.jabber.protocol.ibb.Data Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.11.10 at 11:50:59 PM GMT
//
package org.jabber.protocol.ibb;
import javax.annotation.Generated;
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="<http://www.w3.org/2001/XMLSchema>string">
* <attribute name="sid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="seq" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "data")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public class Data {
@XmlValue
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
protected String value;
@XmlAttribute(required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
protected String sid;
@XmlAttribute(required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
protected String seq;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the sid property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public String getSid() {
return sid;
}
/**
* Sets the value of the sid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public void setSid(String value) {
this.sid = value;
}
/**
* Gets the value of the seq property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public String getSeq() {
return seq;
}
/**
* Sets the value of the seq property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2009-11-10T11:50:59+00:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-793")
public void setSeq(String value) {
this.seq = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy