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.16 at 07:37:02 PM EST 006 // 007 008 009 package org.jabber.protocol.muc; 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 * <sequence> 027 * <element ref="{http://jabber.org/protocol/muc}history" minOccurs="0"/> 028 * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 029 * </sequence> 030 * </restriction> 031 * </complexContent> 032 * </complexType> 033 * </pre> 034 * 035 * 036 */ 037 @XmlAccessorType(XmlAccessType.FIELD) 038 @XmlType(name = "", propOrder = { 039 "history", 040 "password" 041 }) 042 @XmlRootElement(name = "x") 043 public class X { 044 045 protected History history; 046 protected String password; 047 048 /** 049 * Gets the value of the history property. 050 * 051 * @return 052 * possible object is 053 * {@link History } 054 * 055 */ 056 public History getHistory() { 057 return history; 058 } 059 060 /** 061 * Sets the value of the history property. 062 * 063 * @param value 064 * allowed object is 065 * {@link History } 066 * 067 */ 068 public void setHistory(History value) { 069 this.history = value; 070 } 071 072 /** 073 * Gets the value of the password property. 074 * 075 * @return 076 * possible object is 077 * {@link String } 078 * 079 */ 080 public String getPassword() { 081 return password; 082 } 083 084 /** 085 * Sets the value of the password property. 086 * 087 * @param value 088 * allowed object is 089 * {@link String } 090 * 091 */ 092 public void setPassword(String value) { 093 this.password = value; 094 } 095 096 }