
jabber.iq.search.Item Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-146
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.06.09 at 04:26:16 AM BST
//
package jabber.iq.search;
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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import uk.org.retep.xmpp.JID;
import uk.org.retep.xmpp.jaxb.adaptor.JIDAdapter;
/**
* 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">
* <all>
* <element name="first" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="last" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="nick" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* <attribute name="jid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "item")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2010-06-09T03:53:30+0000", comments = "hudson-jaxb-ri-2.2-146 uk.org.retep.tools:jaxb:10.6")
public class Item {
@XmlElement(required = true)
protected String first;
@XmlElement(required = true)
protected String last;
@XmlElement(required = true)
protected String nick;
@XmlElement(required = true)
protected String email;
@XmlAttribute(name = "jid", required = true)
@XmlJavaTypeAdapter(JIDAdapter.class)
protected JID jid;
/**
* Gets the value of the first property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirst() {
return first;
}
/**
* Sets the value of the first property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirst(String value) {
this.first = 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 nick property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNick() {
return nick;
}
/**
* Sets the value of the nick property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNick(String value) {
this.nick = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the jid property.
*
* @return
* possible object is
* {@link String }
*
*/
public JID getJid() {
return jid;
}
/**
* Sets the value of the jid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJid(JID value) {
this.jid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy