Package | Description |
---|---|
com.vmware.oauth2 |
The
com.vmware.oauth2 package contains classes for reuse by OAuth2 API
definitions. |
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. |
Class and Description |
---|
ErrorsFactory
ErrorsFactory is responsible for creating instances of services
contained inside the com.vmware.oauth2.errors package and also has the subpackages reference
to access respective subpackage services. |
Class and Description |
---|
Error
The OAuth2
Error describes the properties common to standard OAuth 2.0
exceptions. |
Error.Type
Enumeration of OAuth 2.0 exceptions.
|
Error.Type.Values
Native Java
enum representing this enumeration class. |
ErrorsFactory
ErrorsFactory is responsible for creating instances of services
contained inside the com.vmware.oauth2.errors package and also has the subpackages reference
to access respective subpackage services. |
InvalidClient
Indicates that the client authentication failed (e.g., unknown client, no client
authentication included, or unsupported authentication method).
|
InvalidClient.Builder
Builder class for
InvalidClient . |
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.
|
InvalidGrant.Builder
Builder class for
InvalidGrant . |
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
|
InvalidRequest.Builder
Builder class for
InvalidRequest . |
InvalidScope
Indicates that the requested scope is invalid, unknown, malformed, or exceeds
the scope granted by the resource owner.
|
InvalidScope.Builder
Builder class for
InvalidScope . |
InvalidTarget
Indicates that the authorization server is unwilling or unable to issue a token
for any target service.
|
InvalidTarget.Builder
Builder class for
InvalidTarget . |
UnauthorizedClient
Indicates that the authenticated client is not authorized to use this
authorization grant type.
|
UnauthorizedClient.Builder
Builder class for
UnauthorizedClient . |
UnsupportedGrantType
Indicates that the authorization grant type is not supported by the
authorization server.
|
UnsupportedGrantType.Builder
Builder class for
UnsupportedGrantType . |