Package | Description |
---|---|
com.vmware.oauth2.errors |
The
com.vmware.oauth2.errors package provides the OAuth 2.0 exceptions
that can be included in the list of exceptions in the specification of OAuth 2.0
methods to indicate that the method might report those exceptions. |
Modifier and Type | Class and Description |
---|---|
class |
InvalidClient
Indicates that the client authentication failed (e.g., unknown client, no client
authentication included, or unsupported authentication method).
|
class |
InvalidGrant
Indicates that the provided authorization grant (e.g., authorization code,
resource owner credentials) or refresh token is invalid, expired, revoked, does
not match the redirection URI used in the authorization request, or was issued
to another client.
|
class |
InvalidRequest
Indicates that the request is missing a required parameter, includes an
unsupported parameter value (other than grant type), repeats a parameter,
includes multiple credentials, utilizes more than one mechanism for
authenticating the client, or is otherwise malformed
|
class |
InvalidScope
Indicates that the requested scope is invalid, unknown, malformed, or exceeds
the scope granted by the resource owner.
|
class |
InvalidTarget
Indicates that the authorization server is unwilling or unable to issue a token
for any target service.
|
class |
UnauthorizedClient
Indicates that the authenticated client is not authorized to use this
authorization grant type.
|
class |
UnsupportedGrantType
Indicates that the authorization grant type is not supported by the
authorization server.
|