public static enum TokenIssueResponse.Action extends Enum<TokenIssueResponse.Action>
| Enum Constant and Description |
|---|
INTERNAL_SERVER_ERROR
The request from the service implementation was wrong or
an error occurred in Authlete.
|
OK
The token request from the client was valid.
|
| Modifier and Type | Method and Description |
|---|---|
static TokenIssueResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TokenIssueResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenIssueResponse.Action INTERNAL_SERVER_ERROR
"500 Internal Server Error" to the
client application.public static final TokenIssueResponse.Action OK
"200 OK" to the client
application with an access token.public static TokenIssueResponse.Action[] values()
for (TokenIssueResponse.Action c : TokenIssueResponse.Action.values()) System.out.println(c);
public static TokenIssueResponse.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 © 2017. All rights reserved.