public static enum BackchannelAuthenticationResponse.Action extends Enum<BackchannelAuthenticationResponse.Action>
| Enum Constant and Description |
|---|
BAD_REQUEST
The backchannel authentication request is invalid.
|
INTERNAL_SERVER_ERROR
The API call from the authorization server implementation was wrong
or an error occurred on Authlete side.
|
UNAUTHORIZED
Client authentication of the backchannel authentication request
failed.
|
USER_IDENTIFICATION
The backchannel authentication request was valid.
|
| Modifier and Type | Method and Description |
|---|---|
static BackchannelAuthenticationResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackchannelAuthenticationResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackchannelAuthenticationResponse.Action BAD_REQUEST
400 Bad Request and application/json to the client
application.public static final BackchannelAuthenticationResponse.Action UNAUTHORIZED
401 Unauthorized and
application/json to the client application.public static final BackchannelAuthenticationResponse.Action INTERNAL_SERVER_ERROR
500 Internal Server Error and application/json to
the client application.public static final BackchannelAuthenticationResponse.Action USER_IDENTIFICATION
auth_req_id to the
client application, (3) communicate with an authentication device of
the end-user to perform end-user authentication and authorization, etc.
See the API document of BackchannelAuthenticationResponse
for details.public static BackchannelAuthenticationResponse.Action[] values()
for (BackchannelAuthenticationResponse.Action c : BackchannelAuthenticationResponse.Action.values()) System.out.println(c);
public static BackchannelAuthenticationResponse.Action 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 © 2019. All rights reserved.