|
Restlet Framework 2.2.3 OSGi Environments |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OAuthError>
org.restlet.ext.oauth.OAuthError
public enum OAuthError
Utility class for formating OAuth errors
Method Summary | |
---|---|
static OAuthError |
valueOf(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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OAuthError access_denied
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 unauthorized_client
public static final OAuthError unsupported_grant_type
public static final OAuthError unsupported_response_type
public static final OAuthError server_error
public static final OAuthError invalid_token
public static final OAuthError insufficient_scope
Method Detail |
---|
public static OAuthError[] values()
for (OAuthError c : OAuthError.values()) System.out.println(c);
public static OAuthError valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Restlet Framework 2.2.3 OSGi Environments |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |