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 ietf.params.xml.ns.xmpp_sasl; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlElement; 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 * <choice minOccurs="0"> 028 * <element name="aborted" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 029 * <element name="incorrect-encoding" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 030 * <element name="invalid-authzid" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 031 * <element name="invalid-mechanism" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 032 * <element name="mechanism-too-weak" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 033 * <element name="not-authorized" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 034 * <element name="temporary-auth-failure" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/> 035 * </choice> 036 * </restriction> 037 * </complexContent> 038 * </complexType> 039 * </pre> 040 * 041 * 042 */ 043 @XmlAccessorType(XmlAccessType.FIELD) 044 @XmlType(name = "", propOrder = { 045 "aborted", 046 "incorrectEncoding", 047 "invalidAuthzid", 048 "invalidMechanism", 049 "mechanismTooWeak", 050 "notAuthorized", 051 "temporaryAuthFailure" 052 }) 053 @XmlRootElement(name = "failure") 054 public class Failure { 055 056 protected String aborted; 057 @XmlElement(name = "incorrect-encoding") 058 protected String incorrectEncoding; 059 @XmlElement(name = "invalid-authzid") 060 protected String invalidAuthzid; 061 @XmlElement(name = "invalid-mechanism") 062 protected String invalidMechanism; 063 @XmlElement(name = "mechanism-too-weak") 064 protected String mechanismTooWeak; 065 @XmlElement(name = "not-authorized") 066 protected String notAuthorized; 067 @XmlElement(name = "temporary-auth-failure") 068 protected String temporaryAuthFailure; 069 070 /** 071 * Gets the value of the aborted property. 072 * 073 * @return 074 * possible object is 075 * {@link String } 076 * 077 */ 078 public String getAborted() { 079 return aborted; 080 } 081 082 /** 083 * Sets the value of the aborted property. 084 * 085 * @param value 086 * allowed object is 087 * {@link String } 088 * 089 */ 090 public void setAborted(String value) { 091 this.aborted = value; 092 } 093 094 /** 095 * Gets the value of the incorrectEncoding property. 096 * 097 * @return 098 * possible object is 099 * {@link String } 100 * 101 */ 102 public String getIncorrectEncoding() { 103 return incorrectEncoding; 104 } 105 106 /** 107 * Sets the value of the incorrectEncoding property. 108 * 109 * @param value 110 * allowed object is 111 * {@link String } 112 * 113 */ 114 public void setIncorrectEncoding(String value) { 115 this.incorrectEncoding = value; 116 } 117 118 /** 119 * Gets the value of the invalidAuthzid property. 120 * 121 * @return 122 * possible object is 123 * {@link String } 124 * 125 */ 126 public String getInvalidAuthzid() { 127 return invalidAuthzid; 128 } 129 130 /** 131 * Sets the value of the invalidAuthzid property. 132 * 133 * @param value 134 * allowed object is 135 * {@link String } 136 * 137 */ 138 public void setInvalidAuthzid(String value) { 139 this.invalidAuthzid = value; 140 } 141 142 /** 143 * Gets the value of the invalidMechanism property. 144 * 145 * @return 146 * possible object is 147 * {@link String } 148 * 149 */ 150 public String getInvalidMechanism() { 151 return invalidMechanism; 152 } 153 154 /** 155 * Sets the value of the invalidMechanism property. 156 * 157 * @param value 158 * allowed object is 159 * {@link String } 160 * 161 */ 162 public void setInvalidMechanism(String value) { 163 this.invalidMechanism = value; 164 } 165 166 /** 167 * Gets the value of the mechanismTooWeak property. 168 * 169 * @return 170 * possible object is 171 * {@link String } 172 * 173 */ 174 public String getMechanismTooWeak() { 175 return mechanismTooWeak; 176 } 177 178 /** 179 * Sets the value of the mechanismTooWeak property. 180 * 181 * @param value 182 * allowed object is 183 * {@link String } 184 * 185 */ 186 public void setMechanismTooWeak(String value) { 187 this.mechanismTooWeak = value; 188 } 189 190 /** 191 * Gets the value of the notAuthorized property. 192 * 193 * @return 194 * possible object is 195 * {@link String } 196 * 197 */ 198 public String getNotAuthorized() { 199 return notAuthorized; 200 } 201 202 /** 203 * Sets the value of the notAuthorized property. 204 * 205 * @param value 206 * allowed object is 207 * {@link String } 208 * 209 */ 210 public void setNotAuthorized(String value) { 211 this.notAuthorized = value; 212 } 213 214 /** 215 * Gets the value of the temporaryAuthFailure property. 216 * 217 * @return 218 * possible object is 219 * {@link String } 220 * 221 */ 222 public String getTemporaryAuthFailure() { 223 return temporaryAuthFailure; 224 } 225 226 /** 227 * Sets the value of the temporaryAuthFailure property. 228 * 229 * @param value 230 * allowed object is 231 * {@link String } 232 * 233 */ 234 public void setTemporaryAuthFailure(String value) { 235 this.temporaryAuthFailure = value; 236 } 237 238 }