public static enum StandardIntrospectionResponse.Action extends Enum<StandardIntrospectionResponse.Action>
| Enum Constant and Description |
|---|
BAD_REQUEST
The request from the client was wrong.
|
INTERNAL_SERVER_ERROR
The request from your system to Authlete (
StandardIntrospectionRequest) was wrong or an error occurred
in Authlete. |
OK
The request from the client was valid.
|
| Modifier and Type | Method and Description |
|---|---|
static StandardIntrospectionResponse.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardIntrospectionResponse.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardIntrospectionResponse.Action INTERNAL_SERVER_ERROR
StandardIntrospectionRequest) was wrong or an error occurred
in Authlete. The introspection endpoint of your authorization
server should return "500 Internal Server Error" to
the client application.public static final StandardIntrospectionResponse.Action BAD_REQUEST
"400 Bad Request"
to the client application.public static final StandardIntrospectionResponse.Action OK
"200 OK" to
the client application.public static StandardIntrospectionResponse.Action[] values()
for (StandardIntrospectionResponse.Action c : StandardIntrospectionResponse.Action.values()) System.out.println(c);
public static StandardIntrospectionResponse.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.