public static enum AuthenticationService.WSCExceptionType extends Enum<AuthenticationService.WSCExceptionType>
| Enum Constant and Description |
|---|
AUTHENTICATION_SERVICE_FAILURE
An Auth Service Failure Exception is thrown when the Authentication Service does
not return required elements in its SOAP response
|
AUTHENTICATION_SERVICE_INVOCATION_FAILURE
This is a general failure exception thrown when the WSFMessage.invoke(sign)
fails.
|
CONTINUE_NOT_SUPPORTED_IN_AUTHENTICATE_CONTEXT
While authentication, continue is currently not supported.
|
CRAM_MD5_CHALLENGE_IS_EMPTY
The server returned a CRAM-MD5 response with no challenge in the <Data> element in the SASLResponse
|
ILLEGAL_ARGUMENTS |
NO_DATA_IN_SASL_RESPONSE
This exception is thrown when it is expected that there will be a <Data> element in the SASLResponse
|
UNEXPECTED_SERVER_AUTH_MECHANISM
The server returned a serverMechanism in the SASLResponse that does not match the one requested
|
UNEXPECTED_STATUS_CODE
When the service client receives a status code in a context where it is
not expected, this Exception will be thrown
|
UNRECOGNIZED_RESPONSE
This exception is thrown when the Authentication Service response for a SASLRequest did not contain a SASLResponse
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationService.WSCExceptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationService.WSCExceptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationService.WSCExceptionType ILLEGAL_ARGUMENTS
public static final AuthenticationService.WSCExceptionType UNEXPECTED_SERVER_AUTH_MECHANISM
public static final AuthenticationService.WSCExceptionType CRAM_MD5_CHALLENGE_IS_EMPTY
public static final AuthenticationService.WSCExceptionType NO_DATA_IN_SASL_RESPONSE
public static final AuthenticationService.WSCExceptionType UNRECOGNIZED_RESPONSE
public static final AuthenticationService.WSCExceptionType UNEXPECTED_STATUS_CODE
public static final AuthenticationService.WSCExceptionType AUTHENTICATION_SERVICE_INVOCATION_FAILURE
public static final AuthenticationService.WSCExceptionType AUTHENTICATION_SERVICE_FAILURE
public static final AuthenticationService.WSCExceptionType CONTINUE_NOT_SUPPORTED_IN_AUTHENTICATE_CONTEXT
String shortDesc
public static AuthenticationService.WSCExceptionType[] values()
for (AuthenticationService.WSCExceptionType c : AuthenticationService.WSCExceptionType.values()) System.out.println(c);
public static AuthenticationService.WSCExceptionType 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 © 1999–2015. All rights reserved.