public static enum SaslModule.SaslError extends Enum<SaslModule.SaslError>
Enum Constant and Description |
---|
aborted
The receiving entity acknowledges an <abort/> element sent by
the initiating entity; sent in reply to the <abort/> element.
|
account_disabled |
credentials_expired |
encryption_required |
incorrect_encoding
The data provided by the initiating entity could not be processed
because the BASE64 encoding is incorrect (e.g., because the encoding
does not adhere to the definition in Section 3 of BASE64); sent in
reply to a <response/> element or an <auth/> element with
initial response data.
|
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; sent in reply to a
<response/> element or an <auth/> element with initial
response data.
|
invalid_mechanism
The initiating entity did not provide a mechanism or requested a
mechanism that is not supported by the receiving entity; sent in
reply to an <auth/> element.
|
malformed_request |
mechanism_too_weak
The mechanism requested by the initiating entity is weaker than
server policy permits for that initiating entity; sent in reply to a
<response/> element or an <auth/> element with initial
response data.
|
not_authorized
he authentication failed because the initiating entity did not
provide valid credentials (this includes but is not limited to the
case of an unknown username); sent in reply to a <response/>
element or an <auth/> element with initial response data.
|
server_not_trusted |
temporary_auth_failure
The authentication failed because of a temporary error condition
within the receiving entity; sent in reply to an <auth/> element
or <response/> element.
|
Modifier and Type | Method and Description |
---|---|
static SaslModule.SaslError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaslModule.SaslError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaslModule.SaslError aborted
public static final SaslModule.SaslError incorrect_encoding
public static final SaslModule.SaslError invalid_authzid
public static final SaslModule.SaslError invalid_mechanism
public static final SaslModule.SaslError mechanism_too_weak
public static final SaslModule.SaslError not_authorized
public static final SaslModule.SaslError server_not_trusted
public static final SaslModule.SaslError temporary_auth_failure
public static final SaslModule.SaslError account_disabled
public static final SaslModule.SaslError credentials_expired
public static final SaslModule.SaslError encryption_required
public static final SaslModule.SaslError malformed_request
public static SaslModule.SaslError[] values()
for (SaslModule.SaslError c : SaslModule.SaslError.values()) System.out.println(c);
public static SaslModule.SaslError valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2022 Tigase. All rights reserved.