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 ietf.params.xml.ns.xmpp_bind;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlRootElement;
014 import javax.xml.bind.annotation.XmlType;
015
016
017 /**
018 * <p>Java class for anonymous complex type.
019 *
020 * <p>The following schema fragment specifies the expected content contained within this class.
021 *
022 * <pre>
023 * <complexType>
024 * <complexContent>
025 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
026 * <choice minOccurs="0">
027 * <element name="resource" type="{urn:ietf:params:xml:ns:xmpp-bind}resourceType"/>
028 * <element name="jid" type="{urn:ietf:params:xml:ns:xmpp-bind}fullJIDType"/>
029 * </choice>
030 * </restriction>
031 * </complexContent>
032 * </complexType>
033 * </pre>
034 *
035 *
036 */
037 @XmlAccessorType(XmlAccessType.FIELD)
038 @XmlType(name = "", propOrder = {
039 "resource",
040 "jid"
041 })
042 @XmlRootElement(name = "bind")
043 public class Bind {
044
045 protected String resource;
046 protected String jid;
047
048 /**
049 * Gets the value of the resource property.
050 *
051 * @return
052 * possible object is
053 * {@link String }
054 *
055 */
056 public String getResource() {
057 return resource;
058 }
059
060 /**
061 * Sets the value of the resource property.
062 *
063 * @param value
064 * allowed object is
065 * {@link String }
066 *
067 */
068 public void setResource(String value) {
069 this.resource = value;
070 }
071
072 /**
073 * Gets the value of the jid property.
074 *
075 * @return
076 * possible object is
077 * {@link String }
078 *
079 */
080 public String getJid() {
081 return jid;
082 }
083
084 /**
085 * Sets the value of the jid property.
086 *
087 * @param value
088 * allowed object is
089 * {@link String }
090 *
091 */
092 public void setJid(String value) {
093 this.jid = value;
094 }
095
096 }