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 jabber.iq.pass; 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.XmlSchemaType; 015 import javax.xml.bind.annotation.XmlType; 016 import javax.xml.bind.annotation.XmlValue; 017 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; 018 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; 019 020 021 /** 022 * <p>Java class for PassEntity complex type. 023 * 024 * <p>The following schema fragment specifies the expected content contained within this class. 025 * 026 * <pre> 027 * <complexType name="PassEntity"> 028 * <simpleContent> 029 * <extension base="<http://www.w3.org/2001/XMLSchema>NMTOKEN"> 030 * <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}short" /> 031 * </extension> 032 * </simpleContent> 033 * </complexType> 034 * </pre> 035 * 036 * 037 */ 038 @XmlAccessorType(XmlAccessType.FIELD) 039 @XmlType(name = "PassEntity", propOrder = { 040 "value" 041 }) 042 public class PassEntity { 043 044 @XmlValue 045 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 046 @XmlSchemaType(name = "NMTOKEN") 047 protected String value; 048 @XmlAttribute 049 protected Short port; 050 051 /** 052 * Gets the value of the value property. 053 * 054 * @return 055 * possible object is 056 * {@link String } 057 * 058 */ 059 public String getValue() { 060 return value; 061 } 062 063 /** 064 * Sets the value of the value property. 065 * 066 * @param value 067 * allowed object is 068 * {@link String } 069 * 070 */ 071 public void setValue(String value) { 072 this.value = value; 073 } 074 075 /** 076 * Gets the value of the port property. 077 * 078 * @return 079 * possible object is 080 * {@link Short } 081 * 082 */ 083 public Short getPort() { 084 return port; 085 } 086 087 /** 088 * Sets the value of the port property. 089 * 090 * @param value 091 * allowed object is 092 * {@link Short } 093 * 094 */ 095 public void setPort(Short value) { 096 this.port = value; 097 } 098 099 }