Interface OA2Errors
-
public interface OA2Errors
Created by Jeff Gaynor
on 2/6/15 at 1:43 PM
-
-
Field Summary
Fields Modifier and Type Field Description static String
ACCESS_DENIED
The resource owner or authorization server denied the request.static String
ACCOUNT_SELECTION_REQUIRED
The End-User is REQUIRED to select a session at the Authorization Server.static String
CONSENT_REQUIRED
The Authorization Server requires End-User consent.static String
ERROR_URI_PARAMETER
static String
INTERACTION_REQUIRED
The Authorization Server requires End-User interaction of some form to proceed.static String
INVALID_GRANT
Used in the access servlet when a grant is presented that is either expired or invalid.static String
INVALID_REQUEST
The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.static String
INVALID_REQUEST_OBJECT
The request parameter contains an invalid Request Object.static String
INVALID_REQUEST_URI
The request_uri in the Authorization Request returns an error or contains invalid data.static String
INVALID_SCOPE
The requested scope is invalid, unknown, or malformed.static String
INVALID_TARGET
static String
INVALID_TOKEN
Specifically for the userInfo and getCert endpoints.static String
LOGIN_REQUIRED
The Authorization Server requires End-User authentication.static String
REGISTRATION_NOT_SUPPORTED
The OP does not support use of the registration parameter defined in Section 7.2.1.static String
REQUEST_NOT_SUPPORTED
The OP does not support use of the request parameter defined in Section 6.static String
REQUEST_URI_NOT_SUPPORTED
The OP does not support use of the request_uri parameter defined in Section 6.static String
SERVER_ERROR
The authorization server encountered an unexpected condition that prevented it from fulfilling the request.static String
TEMPORARILY_UNAVAILABLE
The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.static String
UNAUTHORIZED_CLIENT
The client is not authorized to request an authorization code using this method.static String
UNSUPPORTED_RESPONSE_TYPE
The authorization server does not support obtaining an authorization code using this method.
-
-
-
Field Detail
-
ERROR_URI_PARAMETER
static final String ERROR_URI_PARAMETER
- See Also:
- Constant Field Values
-
INTERACTION_REQUIRED
static final String INTERACTION_REQUIRED
The Authorization Server requires End-User interaction of some form to proceed. This error MAY be returned when the prompt parameter value in the Authentication Request is none, but the Authentication Request cannot be completed without displaying a user interface for End-User interaction. \- See Also:
- Constant Field Values
-
LOGIN_REQUIRED
static final String LOGIN_REQUIRED
The Authorization Server requires End-User authentication. This error MAY be returned when the prompt parameter value in the Authentication Request is none, but the Authentication Request cannot be completed without displaying a user interface for End-User authentication.- See Also:
- Constant Field Values
-
ACCOUNT_SELECTION_REQUIRED
static final String ACCOUNT_SELECTION_REQUIRED
The End-User is REQUIRED to select a session at the Authorization Server. The End-User MAY be authenticated at the Authorization Server with different associated accounts, but the End-User did not select a session. This error MAY be returned when the prompt parameter value in the Authentication Request is none, but the Authentication Request cannot be completed without displaying a user interface to prompt for a session to use.- See Also:
- Constant Field Values
-
CONSENT_REQUIRED
static final String CONSENT_REQUIRED
The Authorization Server requires End-User consent. This error MAY be returned when the prompt parameter value in the Authentication Request is none, but the Authentication Request cannot be completed without displaying a user interface for End-User consent.- See Also:
- Constant Field Values
-
INVALID_REQUEST_URI
static final String INVALID_REQUEST_URI
The request_uri in the Authorization Request returns an error or contains invalid data.- See Also:
- Constant Field Values
-
INVALID_REQUEST_OBJECT
static final String INVALID_REQUEST_OBJECT
The request parameter contains an invalid Request Object.- See Also:
- Constant Field Values
-
REQUEST_NOT_SUPPORTED
static final String REQUEST_NOT_SUPPORTED
The OP does not support use of the request parameter defined in Section 6.- See Also:
- Constant Field Values
-
REQUEST_URI_NOT_SUPPORTED
static final String REQUEST_URI_NOT_SUPPORTED
The OP does not support use of the request_uri parameter defined in Section 6.- See Also:
- Constant Field Values
-
REGISTRATION_NOT_SUPPORTED
static final String REGISTRATION_NOT_SUPPORTED
The OP does not support use of the registration parameter defined in Section 7.2.1.- See Also:
- Constant Field Values
-
INVALID_REQUEST
static final String INVALID_REQUEST
The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.- See Also:
- Constant Field Values
-
UNAUTHORIZED_CLIENT
static final String UNAUTHORIZED_CLIENT
The client is not authorized to request an authorization code using this method.- See Also:
- Constant Field Values
-
ACCESS_DENIED
static final String ACCESS_DENIED
The resource owner or authorization server denied the request.- See Also:
- Constant Field Values
-
UNSUPPORTED_RESPONSE_TYPE
static final String UNSUPPORTED_RESPONSE_TYPE
The authorization server does not support obtaining an authorization code using this method.- See Also:
- Constant Field Values
-
INVALID_SCOPE
static final String INVALID_SCOPE
The requested scope is invalid, unknown, or malformed.- See Also:
- Constant Field Values
-
SERVER_ERROR
static final String SERVER_ERROR
The authorization server encountered an unexpected condition that prevented it from fulfilling the request. (This error code is needed because a 500 Internal Server Error HTTP status code cannot be returned to the client via an HTTP redirect.)- See Also:
- Constant Field Values
-
TEMPORARILY_UNAVAILABLE
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. (This error code is needed because a 503 Service Unavailable HTTP status code cannot be returned to the client via an HTTP redirect.)- See Also:
- Constant Field Values
-
INVALID_TOKEN
static final String INVALID_TOKEN
Specifically for the userInfo and getCert endpoints. This is used whenever a token is encountered that is not valid (for whatever reason).- See Also:
- Constant Field Values
-
INVALID_GRANT
static final String INVALID_GRANT
Used in the access servlet when a grant is presented that is either expired or invalid.- See Also:
- Constant Field Values
-
INVALID_TARGET
static final String INVALID_TARGET
- See Also:
- Constant Field Values
-
-