| AuthorizationToken |
Base class for RFC 7235 authentication/authorization tokens
|
| BasicAuthorizationToken |
Implementation of the standard RFC 7617 Bearer authentication scheme token
This implementation parses the token and makes the user name and password available through the API.
|
| BearerAuthorizationToken |
Implementation of the standard RFC 6750 Bearer authentication scheme token
No additional parsing is done on the bearer token and the user is expected to implement
their own verification on the token value that can be retrieved from the AuthorizationToken.getToken() method.
|
| DigestAuthorizationToken |
Implementation of the standard RFC 7616 Digest authentication scheme token
Complete implementation of token validation and data access is provided, depending on the
specified digest algorithm being available from the JVM cryptography provider.
|
| HOBAAuthorizationToken |
Implementation of the standard RFC 7486 Mututal authentication scheme token
The token parameters are available from the ParameterEncodedAuthorizationToken.getParameter(String)
method, though currently no validation is performed to make sure that all required fields are present.
|
| MutualAuthorizationToken |
Implementation of the standard RFC 8120 Mututal authentication scheme token
The token parameters are available from the ParameterEncodedAuthorizationToken.getParameter(String)
method, though currently no validation is performed to make sure that all required fields are present.
|
| NegotiateAuthorizationToken |
Implementation of the standard RFC 4559 Negotiate authentication scheme token
This implementation does not decode the GSS API data and it is available as plain text
from the AuthorizationToken.getToken() method.
|
| NullAuthorizationToken |
|
| OAuthAuthorizationToken |
Implementation of the standard RFC 5849 OAuth authentication scheme token.
|
| ParameterEncodedAuthorizationToken |
Base implementation for authentication schemes where the value is a white-space separated list
of parameters in the format key=value or key="long value"
|
| SimpleAuthrizationToken |
Implementation of a non-standard authentication scheme where a single opaque token is provided
without an authencation scheme name
|