public enum OAuthError extends java.lang.Enum<OAuthError>
Enum Constant and Description |
---|
access_denied |
insufficient_scope |
invalid_client |
invalid_grant |
invalid_request |
invalid_scope |
invalid_token |
server_error |
unauthorized_client |
unsupported_grant_type |
unsupported_response_type |
Modifier and Type | Method and Description |
---|---|
static OAuthError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OAuthError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthError access_denied
public static final OAuthError insufficient_scope
public static final OAuthError invalid_client
public static final OAuthError invalid_grant
public static final OAuthError invalid_request
public static final OAuthError invalid_scope
public static final OAuthError invalid_token
public static final OAuthError server_error
public static final OAuthError unauthorized_client
public static final OAuthError unsupported_grant_type
public static final OAuthError unsupported_response_type
public static OAuthError[] values()
for (OAuthError c : OAuthError.values()) System.out.println(c);
public static OAuthError valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2005-2018 Restlet.