001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 
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: 2011.11.18 at 02:23:57 PM EST 
006    //
007    
008    
009    package org.jabber.protocol.muc_user;
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    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;attribute name="code" use="required">
028     *         &lt;simpleType>
029     *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}int">
030     *             &lt;length value="3"/>
031     *           &lt;/restriction>
032     *         &lt;/simpleType>
033     *       &lt;/attribute>
034     *     &lt;/restriction>
035     *   &lt;/complexContent>
036     * &lt;/complexType>
037     * </pre>
038     * 
039     * 
040     */
041    @XmlAccessorType(XmlAccessType.FIELD)
042    @XmlType(name = "")
043    @XmlRootElement(name = "status")
044    public class Status {
045    
046        @XmlAttribute(required = true)
047        protected int code;
048    
049        /**
050         * Gets the value of the code property.
051         * 
052         */
053        public int getCode() {
054            return code;
055        }
056    
057        /**
058         * Sets the value of the code property.
059         * 
060         */
061        public void setCode(int value) {
062            this.code = value;
063        }
064    
065    }