| Package | Description | 
|---|---|
| io.vertx.ext.auth.oauth2 | |
| io.vertx.reactivex.ext.auth.oauth2 | |
| io.vertx.rxjava.ext.auth.oauth2 | 
| 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 | 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 Eclipse. All rights reserved.