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_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 * <complexType> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <attribute name="code" use="required"> 028 * <simpleType> 029 * <restriction base="{http://www.w3.org/2001/XMLSchema}int"> 030 * <minInclusive value="100"/> 031 * <maxInclusive value="999"/> 032 * </restriction> 033 * </simpleType> 034 * </attribute> 035 * </restriction> 036 * </complexContent> 037 * </complexType> 038 * </pre> 039 * 040 * 041 */ 042 @XmlAccessorType(XmlAccessType.FIELD) 043 @XmlType(name = "") 044 @XmlRootElement(name = "status") 045 public class Status { 046 047 @XmlAttribute(required = true) 048 protected int code; 049 050 /** 051 * Gets the value of the code property. 052 * 053 */ 054 public int getCode() { 055 return code; 056 } 057 058 /** 059 * Sets the value of the code property. 060 * 061 */ 062 public void setCode(int value) { 063 this.code = value; 064 } 065 066 }