public static enum BackchannelAuthenticationIssueResponse.Action extends Enum<BackchannelAuthenticationIssueResponse.Action>
| Enum Constant and Description |
|---|
INTERNAL_SERVER_ERROR
The implementation of the backchannel authentication endpoint should
return a
500 Internal Server Error response to the client
application. |
INVALID_TICKET
The ticket included in the API call is invalid.
|
OK
The implementation of the backchannel authentication endpoint should
return a
200 OK response to the client application. |
| Modifier and Type | Method and Description |
|---|---|
static BackchannelAuthenticationIssueResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackchannelAuthenticationIssueResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackchannelAuthenticationIssueResponse.Action OK
200 OK response to the client application.public static final BackchannelAuthenticationIssueResponse.Action INTERNAL_SERVER_ERROR
500 Internal Server Error response to the client
application. However, in most cases, commercial implementations
prefer to use other HTTP status code than 5xx.public static final BackchannelAuthenticationIssueResponse.Action INVALID_TICKET
public static BackchannelAuthenticationIssueResponse.Action[] values()
for (BackchannelAuthenticationIssueResponse.Action c : BackchannelAuthenticationIssueResponse.Action.values()) System.out.println(c);
public static BackchannelAuthenticationIssueResponse.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.