001 //
002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004 // Any modifications to this file will be lost upon recompilation of the source schema.
005 // Generated on: 2013.02.07 at 02:32:38 PM CET
006 //
007
008
009 package jabber.iq.last;
010
011 import java.math.BigInteger;
012 import javax.xml.bind.annotation.XmlAccessType;
013 import javax.xml.bind.annotation.XmlAccessorType;
014 import javax.xml.bind.annotation.XmlAttribute;
015 import javax.xml.bind.annotation.XmlRootElement;
016 import javax.xml.bind.annotation.XmlSchemaType;
017 import javax.xml.bind.annotation.XmlType;
018 import javax.xml.bind.annotation.XmlValue;
019
020
021 /**
022 * <p>Java class for anonymous complex type.
023 *
024 * <p>The following schema fragment specifies the expected content contained within this class.
025 *
026 * <pre>
027 * <complexType>
028 * <simpleContent>
029 * <extension base="<http://www.w3.org/2001/XMLSchema>string">
030 * <attribute name="seconds" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" />
031 * </extension>
032 * </simpleContent>
033 * </complexType>
034 * </pre>
035 *
036 *
037 */
038 @XmlAccessorType(XmlAccessType.FIELD)
039 @XmlType(name = "", propOrder = {
040 "value"
041 })
042 @XmlRootElement(name = "query")
043 public class Query {
044
045 @XmlValue
046 protected String value;
047 @XmlAttribute
048 @XmlSchemaType(name = "unsignedLong")
049 protected BigInteger seconds;
050
051 /**
052 * Gets the value of the value property.
053 *
054 * @return
055 * possible object is
056 * {@link String }
057 *
058 */
059 public String getValue() {
060 return value;
061 }
062
063 /**
064 * Sets the value of the value property.
065 *
066 * @param value
067 * allowed object is
068 * {@link String }
069 *
070 */
071 public void setValue(String value) {
072 this.value = value;
073 }
074
075 /**
076 * Gets the value of the seconds property.
077 *
078 * @return
079 * possible object is
080 * {@link BigInteger }
081 *
082 */
083 public BigInteger getSeconds() {
084 return seconds;
085 }
086
087 /**
088 * Sets the value of the seconds property.
089 *
090 * @param value
091 * allowed object is
092 * {@link BigInteger }
093 *
094 */
095 public void setSeconds(BigInteger value) {
096 this.seconds = value;
097 }
098
099 }