Package | Description |
---|---|
org.apache.cxf.rs.security.oauth.client | |
org.apache.cxf.rs.security.oauth.provider |
Modifier and Type | Method and Description |
---|---|
static OAuthClientUtils.Token |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
OAuthClientUtils.Token requestToken,
String verifier)
Returns a simple representation of the Access token
|
static OAuthClientUtils.Token |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
OAuthClientUtils.Token requestToken,
String verifier,
Map<String,Object> oauthConsumerProps) |
static OAuthClientUtils.Token |
OAuthClientUtils.getRequestToken(WebClient requestTokenService,
OAuthClientUtils.Consumer consumer,
URI callback,
Map<String,String> extraParams)
Returns a simple representation of the Request token
|
static OAuthClientUtils.Token |
OAuthClientUtils.getRequestToken(WebClient requestTokenService,
OAuthClientUtils.Consumer consumer,
URI callback,
Map<String,String> extraParams,
Map<String,Object> oauthConsumerProps) |
Modifier and Type | Method and Description |
---|---|
AccessToken |
OAuthDataProvider.createAccessToken(AccessTokenRegistration reg)
Creates a new
AccessToken |
RequestToken |
OAuthDataProvider.createRequestToken(RequestTokenRegistration reg)
Creates a temporarily request token which will capture the
information about the
Client attempting to access or
modify the resource owner's resource |
String |
OAuthDataProvider.finalizeAuthorization(AuthorizationInput data)
Sets the verifier confirming the resource owner's agreement for
the
Client to perform the action as represented by
the provided RequestToken . |
AccessToken |
OAuthDataProvider.getAccessToken(String accessToken)
Returns the
AccessToken |
Client |
OAuthDataProvider.getClient(String clientId)
Returns the previously registered third-party
Client |
RequestToken |
OAuthDataProvider.getRequestToken(String requestToken)
Returns the previously registered
RequestToken |
void |
OAuthDataProvider.removeToken(Token token)
Removes the token
|
Apache CXF