Package | Description |
---|---|
io.vertx.reactivex.ext.auth.oauth2 |
Modifier and Type | Field and Description |
---|---|
static TypeArg<AccessToken> |
AccessToken.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
AccessToken |
AccessToken.introspect(Handler<AsyncResult<Void>> callback)
Introspect access token.
|
AccessToken |
AccessToken.logout(Handler<AsyncResult<Void>> callback)
Revoke refresh token and calls the logout endpoint.
|
static AccessToken |
AccessToken.newInstance(AccessToken arg) |
AccessToken |
AccessToken.refresh(Handler<AsyncResult<Void>> callback)
Refresh the access token
|
AccessToken |
AccessToken.revoke(String token_type,
Handler<AsyncResult<Void>> callback)
Revoke access or refresh token
|
Modifier and Type | Method and Description |
---|---|
Single<AccessToken> |
OAuth2Auth.rxDecodeToken(String token)
Decode a token to a
AccessToken object. |
Single<AccessToken> |
OAuth2Auth.rxGetToken(JsonObject params)
Returns the Access Token object.
|
Single<AccessToken> |
OAuth2Auth.rxIntrospectToken(String token)
Query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine
meta-information about this token.
|
Modifier and Type | Method and Description |
---|---|
OAuth2Auth |
OAuth2Auth.decodeToken(String token,
Handler<AsyncResult<AccessToken>> handler)
Decode a token to a
AccessToken object. |
void |
OAuth2Auth.getToken(JsonObject params,
Handler<AsyncResult<AccessToken>> handler)
Returns the Access Token object.
|
OAuth2Auth |
OAuth2Auth.introspectToken(String token,
Handler<AsyncResult<AccessToken>> handler)
Query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine
meta-information about this token.
|
Copyright © 2017. All rights reserved.