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

OAuthError.ResourceResponse

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

Summary

Constants
String EXPIRED_TOKEN
String INSUFFICIENT_SCOPE The request requires higher privileges than provided by the access token.
String INVALID_REQUEST The request is missing a required parameter, includes an unsupported parameter value, repeats a parameter, includes multiple credentials, utilizes more than one mechanism for authenticating the client, or is otherwise malformed.
String INVALID_TOKEN The access token provided is expired, revoked, malformed, or invalid for other reasons.
Public Constructors
OAuthError.ResourceResponse()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String EXPIRED_TOKEN

Constant Value: "expired_token"

public static final String INSUFFICIENT_SCOPE

The request requires higher privileges than provided by the access token.

Constant Value: "insufficient_scope"

public static final String INVALID_REQUEST

The request is missing a required parameter, includes an unsupported parameter value, repeats a parameter, includes multiple credentials, utilizes more than one mechanism for authenticating the client, or is otherwise malformed.

Constant Value: "invalid_request"

public static final String INVALID_TOKEN

The access token provided is expired, revoked, malformed, or invalid for other reasons.

Constant Value: "invalid_token"

Public Constructors

public OAuthError.ResourceResponse ()