All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ietf.params.xml.ns.xmpp_sasl.Failure Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2007.03.23 at 05:33:02 PM UTC 
//


package ietf.params.xml.ns.xmpp_sasl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice minOccurs="0">
 *         <element name="aborted" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *         <element name="incorrect-encoding" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *         <element name="invalid-authzid" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *         <element name="invalid-mechanism" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *         <element name="mechanism-too-weak" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *         <element name="not-authorized" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *         <element name="temporary-auth-failure" type="{urn:ietf:params:xml:ns:xmpp-sasl}empty"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "aborted", "incorrectEncoding", "invalidAuthzid", "invalidMechanism", "mechanismTooWeak", "notAuthorized", "temporaryAuthFailure" }) @XmlRootElement(name = "failure") public class Failure { protected String aborted; @XmlElement(name = "incorrect-encoding") protected String incorrectEncoding; @XmlElement(name = "invalid-authzid") protected String invalidAuthzid; @XmlElement(name = "invalid-mechanism") protected String invalidMechanism; @XmlElement(name = "mechanism-too-weak") protected String mechanismTooWeak; @XmlElement(name = "not-authorized") protected String notAuthorized; @XmlElement(name = "temporary-auth-failure") protected String temporaryAuthFailure; /** * Gets the value of the aborted property. * * @return * possible object is * {@link String } * */ public String getAborted() { return aborted; } /** * Sets the value of the aborted property. * * @param value * allowed object is * {@link String } * */ public void setAborted(String value) { this.aborted = value; } /** * Gets the value of the incorrectEncoding property. * * @return * possible object is * {@link String } * */ public String getIncorrectEncoding() { return incorrectEncoding; } /** * Sets the value of the incorrectEncoding property. * * @param value * allowed object is * {@link String } * */ public void setIncorrectEncoding(String value) { this.incorrectEncoding = value; } /** * Gets the value of the invalidAuthzid property. * * @return * possible object is * {@link String } * */ public String getInvalidAuthzid() { return invalidAuthzid; } /** * Sets the value of the invalidAuthzid property. * * @param value * allowed object is * {@link String } * */ public void setInvalidAuthzid(String value) { this.invalidAuthzid = value; } /** * Gets the value of the invalidMechanism property. * * @return * possible object is * {@link String } * */ public String getInvalidMechanism() { return invalidMechanism; } /** * Sets the value of the invalidMechanism property. * * @param value * allowed object is * {@link String } * */ public void setInvalidMechanism(String value) { this.invalidMechanism = value; } /** * Gets the value of the mechanismTooWeak property. * * @return * possible object is * {@link String } * */ public String getMechanismTooWeak() { return mechanismTooWeak; } /** * Sets the value of the mechanismTooWeak property. * * @param value * allowed object is * {@link String } * */ public void setMechanismTooWeak(String value) { this.mechanismTooWeak = value; } /** * Gets the value of the notAuthorized property. * * @return * possible object is * {@link String } * */ public String getNotAuthorized() { return notAuthorized; } /** * Sets the value of the notAuthorized property. * * @param value * allowed object is * {@link String } * */ public void setNotAuthorized(String value) { this.notAuthorized = value; } /** * Gets the value of the temporaryAuthFailure property. * * @return * possible object is * {@link String } * */ public String getTemporaryAuthFailure() { return temporaryAuthFailure; } /** * Sets the value of the temporaryAuthFailure property. * * @param value * allowed object is * {@link String } * */ public void setTemporaryAuthFailure(String value) { this.temporaryAuthFailure = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy