public static enum AuthorizationAuthenticateResponse.Action extends Enum<AuthorizationAuthenticateResponse.Action>
| Enum Constant and Description |
|---|
BAD_REQUEST
The ticket was no longer valid.
|
INTERNAL_SERVER_ERROR
The request from the service implementation was wrong or
an error occurred in Authlete, so the service implementation
should return
"500 Internal Server Error". |
OK
The result of authentication was obtained.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthorizationAuthenticateResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationAuthenticateResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationAuthenticateResponse.Action INTERNAL_SERVER_ERROR
"500 Internal Server Error".public static final AuthorizationAuthenticateResponse.Action BAD_REQUEST
"400 Bad Request".public static final AuthorizationAuthenticateResponse.Action OK
"200 OK".public static AuthorizationAuthenticateResponse.Action[] values()
for (AuthorizationAuthenticateResponse.Action c : AuthorizationAuthenticateResponse.Action.values()) System.out.println(c);
public static AuthorizationAuthenticateResponse.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.