| Modifier and Type | Method and Description |
|---|---|
AccessToken |
AccessToken.fetch(HttpMethod method,
String resource,
JsonObject headers,
Buffer payload,
Handler<AsyncResult<OAuth2Response>> callback)
Deprecated.
Fetches a JSON resource using this Access Token.
|
default AccessToken |
AccessToken.fetch(String resource,
Handler<AsyncResult<OAuth2Response>> callback)
Deprecated.
Fetches a JSON resource using this Access Token.
|
AccessToken |
AccessToken.introspect(Handler<AsyncResult<Void>> callback)
Deprecated.
Introspect access token.
|
AccessToken |
AccessToken.introspect(String tokenType,
Handler<AsyncResult<Void>> callback)
Deprecated.
Introspect access token.
|
AccessToken |
AccessToken.logout(Handler<AsyncResult<Void>> callback)
Deprecated.
Revoke refresh token and calls the logout endpoint.
|
AccessToken |
AccessToken.refresh(Handler<AsyncResult<Void>> callback)
Deprecated.
Refresh the access token
|
AccessToken |
AccessToken.revoke(String token_type,
Handler<AsyncResult<Void>> callback)
Deprecated.
Revoke access or refresh token
|
AccessToken |
AccessToken.setTrustJWT(boolean trust)
Deprecated.
|
AccessToken |
AccessToken.userInfo(Handler<AsyncResult<JsonObject>> callback)
Deprecated.
Load the user info as per OIDC spec.
|
| Modifier and Type | Method and Description |
|---|---|
void |
OAuth2RBAC.isAuthorized(AccessToken user,
String authority,
Handler<AsyncResult<Boolean>> handler)
This method should verify if the user has the given authority and return either a boolean value or an error.
|
| Modifier and Type | Method and Description |
|---|---|
OAuth2Auth |
OAuth2Auth.decodeToken(String token,
Handler<AsyncResult<AccessToken>> handler)
Deprecated.
use
AuthProvider.authenticate(JsonObject, Handler) instead. |
void |
OAuth2Auth.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> handler)
Deprecated.
use
AuthProvider.authenticate(JsonObject, Handler) instead. |
default OAuth2Auth |
OAuth2Auth.introspectToken(String token,
Handler<AsyncResult<AccessToken>> handler)
Deprecated.
|
OAuth2Auth |
OAuth2Auth.introspectToken(String token,
String tokenType,
Handler<AsyncResult<AccessToken>> handler)
Deprecated.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OAuth2TokenImpl |
class |
OAuth2UserImpl |
| Modifier and Type | Method and Description |
|---|---|
AccessToken |
OAuth2TokenImpl.fetch(HttpMethod method,
String resource,
JsonObject headers,
Buffer payload,
Handler<AsyncResult<OAuth2Response>> callback) |
AccessToken |
OAuth2TokenImpl.introspect(Handler<AsyncResult<Void>> handler) |
AccessToken |
OAuth2TokenImpl.introspect(String tokenType,
Handler<AsyncResult<Void>> handler) |
AccessToken |
OAuth2TokenImpl.setTrustJWT(boolean trust) |
AccessToken |
OAuth2TokenImpl.userInfo(Handler<AsyncResult<JsonObject>> callback) |
| Modifier and Type | Method and Description |
|---|---|
OAuth2Auth |
OAuth2AuthProviderImpl.decodeToken(String token,
Handler<AsyncResult<AccessToken>> handler)
Deprecated.
|
void |
OAuth2AuthProviderImpl.getToken(JsonObject credentials,
Handler<AsyncResult<AccessToken>> handler)
Deprecated.
|
OAuth2Auth |
OAuth2AuthProviderImpl.introspectToken(String token,
String tokenType,
Handler<AsyncResult<AccessToken>> handler) |
| Modifier and Type | Method and Description |
|---|---|
void |
PasswordImpl.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> handler)
Returns the Access Token object.
|
void |
OAuth2Flow.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> handler)
See implementations for specific documentation.
|
void |
ClientImpl.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> handler)
Returns the Access Token object.
|
void |
AuthJWTImpl.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> callback)
Returns the Access Token object.
|
void |
AuthCodeImpl.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> handler)
Returns the Access Token object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
KeycloakRBACImpl.isAuthorized(AccessToken user,
String authority,
Handler<AsyncResult<Boolean>> handler)
Determine if this token has an associated role.
|
| Modifier and Type | Method and Description |
|---|---|
AccessToken |
AccessToken.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static AccessToken |
AccessToken.newInstance(AccessToken arg) |
| Constructor and Description |
|---|
AccessToken(AccessToken delegate) |
| Modifier and Type | Method and Description |
|---|---|
AccessToken |
AccessToken.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static AccessToken |
AccessToken.newInstance(AccessToken arg) |
| Constructor and Description |
|---|
AccessToken(AccessToken delegate) |
Copyright © 2020. All rights reserved.