Package tigase.auth

Enum XmppSaslException.SaslError

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      aborted
      The receiving entity acknowledges that the authentication handshake has been aborted by the initiating entity.
      account_disabled
      The account of the initiating entity has been temporarily disabled.
      credentials_expired
      The authentication failed because the initiating entity provided credentials that have expired.
      encryption_required
      The mechanism requested by the initiating entity cannot be used unless the confidentiality and integrity of the underlying stream are protected (typically via TLS).
      incorrect_encoding
      The data provided by the initiating entity could not be processed because the base 64 encoding is incorrect.
      invalid_authzid
      The authzid provided by the initiating entity is invalid, either because it is incorrectly formatted or because the initiating entity does not have permissions to authorize that ID.
      invalid_mechanism
      The initiating entity did not specify a mechanism, or requested a mechanism that is not supported by the receiving entity.
      malformed_request
      The request is malformed (e.g., the <auth/> element includes initial response data but the mechanism does not allow that, or the data sent violates the syntax for the specified SASL mechanism).
      mechanism_too_weak
      The mechanism requested by the initiating entity is weaker than server policy permits for that initiating entity.
      not_authorized
      The authentication failed because the initiating entity did not provide proper credentials, or because some generic authentication failure has occurred but the receiving entity does not wish to disclose specific information about the cause of the failure.
      temporary_auth_failure
      The authentication failed because of a temporary error condition within the receiving entity, and it is advisable for the initiating entity to try again later.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getElementName()  
      static XmppSaslException.SaslError valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static XmppSaslException.SaslError[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • aborted

        public static final XmppSaslException.SaslError aborted
        The receiving entity acknowledges that the authentication handshake has been aborted by the initiating entity.
      • account_disabled

        public static final XmppSaslException.SaslError account_disabled
        The account of the initiating entity has been temporarily disabled.
      • credentials_expired

        public static final XmppSaslException.SaslError credentials_expired
        The authentication failed because the initiating entity provided credentials that have expired.
      • encryption_required

        public static final XmppSaslException.SaslError encryption_required
        The mechanism requested by the initiating entity cannot be used unless the confidentiality and integrity of the underlying stream are protected (typically via TLS).
      • incorrect_encoding

        public static final XmppSaslException.SaslError incorrect_encoding
        The data provided by the initiating entity could not be processed because the base 64 encoding is incorrect.
      • invalid_authzid

        public static final XmppSaslException.SaslError invalid_authzid
        The authzid provided by the initiating entity is invalid, either because it is incorrectly formatted or because the initiating entity does not have permissions to authorize that ID.
      • invalid_mechanism

        public static final XmppSaslException.SaslError invalid_mechanism
        The initiating entity did not specify a mechanism, or requested a mechanism that is not supported by the receiving entity.
      • malformed_request

        public static final XmppSaslException.SaslError malformed_request
        The request is malformed (e.g., the <auth/> element includes initial response data but the mechanism does not allow that, or the data sent violates the syntax for the specified SASL mechanism).
      • mechanism_too_weak

        public static final XmppSaslException.SaslError mechanism_too_weak
        The mechanism requested by the initiating entity is weaker than server policy permits for that initiating entity.
      • not_authorized

        public static final XmppSaslException.SaslError not_authorized
        The authentication failed because the initiating entity did not provide proper credentials, or because some generic authentication failure has occurred but the receiving entity does not wish to disclose specific information about the cause of the failure.
      • temporary_auth_failure

        public static final XmppSaslException.SaslError temporary_auth_failure
        The authentication failed because of a temporary error condition within the receiving entity, and it is advisable for the initiating entity to try again later.
    • Method Detail

      • values

        public static XmppSaslException.SaslError[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (XmppSaslException.SaslError c : XmppSaslException.SaslError.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static XmppSaslException.SaslError valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getElementName

        public java.lang.String getElementName()