Class OAuthError.CodeResponse
- java.lang.Object
-
- org.apache.oltu.oauth2.common.error.OAuthError.CodeResponse
-
- Enclosing class:
- OAuthError
public static final class OAuthError.CodeResponse extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ACCESS_DENIED
The resource owner or authorization server denied the request.static java.lang.String
INVALID_REQUEST
The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.static java.lang.String
INVALID_SCOPE
The requested scope is invalid, unknown, or malformed.static java.lang.String
SERVER_ERROR
The authorization server encountered an unexpected condition which prevented it from fulfilling the request.static java.lang.String
TEMPORARILY_UNAVAILABLE
The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.static java.lang.String
UNAUTHORIZED_CLIENT
The client is not authorized to request an authorization code using this method.static java.lang.String
UNSUPPORTED_RESPONSE_TYPE
The authorization server does not support obtaining an authorization code using this method.
-
Constructor Summary
Constructors Constructor Description CodeResponse()
-
-
-
Field Detail
-
INVALID_REQUEST
public static final java.lang.String INVALID_REQUEST
The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.- See Also:
- Constant Field Values
-
UNAUTHORIZED_CLIENT
public static final java.lang.String UNAUTHORIZED_CLIENT
The client is not authorized to request an authorization code using this method.- See Also:
- Constant Field Values
-
ACCESS_DENIED
public static final java.lang.String ACCESS_DENIED
The resource owner or authorization server denied the request.- See Also:
- Constant Field Values
-
UNSUPPORTED_RESPONSE_TYPE
public static final java.lang.String UNSUPPORTED_RESPONSE_TYPE
The authorization server does not support obtaining an authorization code using this method.- See Also:
- Constant Field Values
-
INVALID_SCOPE
public static final java.lang.String INVALID_SCOPE
The requested scope is invalid, unknown, or malformed.- See Also:
- Constant Field Values
-
SERVER_ERROR
public static final java.lang.String SERVER_ERROR
The authorization server encountered an unexpected condition which prevented it from fulfilling the request.- See Also:
- Constant Field Values
-
TEMPORARILY_UNAVAILABLE
public static final java.lang.String TEMPORARILY_UNAVAILABLE
The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.- See Also:
- Constant Field Values
-
-