This project has retired. For details please refer to its Attic page.
OAuthError.CodeResponse | Apache Oltu - OAuth 2.0
public static final class

OAuthError.CodeResponse

extends Object
java.lang.Object
   ↳ org.apache.oltu.oauth2.common.error.OAuthError.CodeResponse

Summary

Constants
String ACCESS_DENIED The resource owner or authorization server denied the request.
String INVALID_REQUEST The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.
String INVALID_SCOPE The requested scope is invalid, unknown, or malformed.
String SERVER_ERROR The authorization server encountered an unexpected condition which prevented it from fulfilling the request.
String TEMPORARILY_UNAVAILABLE The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.
String UNAUTHORIZED_CLIENT The client is not authorized to request an authorization code using this method.
String UNSUPPORTED_RESPONSE_TYPE The authorization server does not support obtaining an authorization code using this method.
Public Constructors
OAuthError.CodeResponse()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String ACCESS_DENIED

The resource owner or authorization server denied the request.

Constant Value: "access_denied"

public static final String INVALID_REQUEST

The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.

Constant Value: "invalid_request"

public static final String INVALID_SCOPE

The requested scope is invalid, unknown, or malformed.

Constant Value: "invalid_scope"

public static final String SERVER_ERROR

The authorization server encountered an unexpected condition which prevented it from fulfilling the request.

Constant Value: "server_error"

public static final String TEMPORARILY_UNAVAILABLE

The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.

Constant Value: "temporarily_unavailable"

public static final String UNAUTHORIZED_CLIENT

The client is not authorized to request an authorization code using this method.

Constant Value: "unauthorized_client"

public static final String UNSUPPORTED_RESPONSE_TYPE

The authorization server does not support obtaining an authorization code using this method.

Constant Value: "unsupported_response_type"

Public Constructors

public OAuthError.CodeResponse ()