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 org.jabber.protocol.muc_admin;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlAttribute;
014 import javax.xml.bind.annotation.XmlRootElement;
015 import javax.xml.bind.annotation.XmlType;
016 import javax.xml.bind.annotation.XmlValue;
017
018
019 /**
020 * <p>Java class for anonymous complex type.
021 *
022 * <p>The following schema fragment specifies the expected content contained within this class.
023 *
024 * <pre>
025 * <complexType>
026 * <simpleContent>
027 * <extension base="<http://jabber.org/protocol/muc#admin>empty">
028 * <attribute name="jid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
029 * </extension>
030 * </simpleContent>
031 * </complexType>
032 * </pre>
033 *
034 *
035 */
036 @XmlAccessorType(XmlAccessType.FIELD)
037 @XmlType(name = "", propOrder = {
038 "value"
039 })
040 @XmlRootElement(name = "actor")
041 public class Actor {
042
043 @XmlValue
044 protected String value;
045 @XmlAttribute(required = true)
046 protected String jid;
047
048 /**
049 * Gets the value of the value property.
050 *
051 * @return
052 * possible object is
053 * {@link String }
054 *
055 */
056 public String getValue() {
057 return value;
058 }
059
060 /**
061 * Sets the value of the value property.
062 *
063 * @param value
064 * allowed object is
065 * {@link String }
066 *
067 */
068 public void setValue(String value) {
069 this.value = 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 }