|
Apache CXF API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.client |
---|
Methods in org.apache.cxf.rs.security.oauth2.client that throw OAuthServiceException | |
---|---|
static String |
OAuthClientUtils.createAuthorizationHeader(ClientAccessToken accessToken)
Creates OAuth Authorization header with Bearer scheme |
static String |
OAuthClientUtils.createAuthorizationHeader(ClientAccessToken accessToken,
HttpRequestProperties httpProps)
Creates OAuth Authorization header with the scheme that may require an access to the current HTTP request properties |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(String accessTokenServiceUri,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant,
boolean setAuthorizationHeader)
Obtains the access token from OAuth AccessToken Service |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
AccessTokenGrant grant)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
AccessTokenGrant grant,
Map<String,String> extraParams)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant,
Map<String,String> extraParams,
boolean setAuthorizationHeader)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
static ClientAccessToken |
OAuthClientUtils.getAccessToken(WebClient accessTokenService,
OAuthClientUtils.Consumer consumer,
AccessTokenGrant grant,
Map<String,String> extraParams,
String defaultTokenType,
boolean setAuthorizationHeader)
Obtains the access token from OAuth AccessToken Service using the initialized web client |
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.filters |
---|
Methods in org.apache.cxf.rs.security.oauth2.filters that throw OAuthServiceException | |
---|---|
AccessTokenValidation |
AccessTokenValidatorClient.validateAccessToken(MessageContext mc,
String authScheme,
String authSchemeData)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.grants.clientcred |
---|
Methods in org.apache.cxf.rs.security.oauth2.grants.clientcred that throw OAuthServiceException | |
---|---|
ServerAccessToken |
ClientCredentialsGrantHandler.createAccessToken(Client client,
javax.ws.rs.core.MultivaluedMap<String,String> params)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.grants.code |
---|
Methods in org.apache.cxf.rs.security.oauth2.grants.code that throw OAuthServiceException | |
---|---|
ServerAccessToken |
AuthorizationCodeGrantHandler.createAccessToken(Client client,
javax.ws.rs.core.MultivaluedMap<String,String> params)
|
ServerAuthorizationCodeGrant |
AbstractAuthorizationCodeDataProvider.createCodeGrant(AuthorizationCodeRegistration reg)
|
ServerAuthorizationCodeGrant |
AuthorizationCodeDataProvider.createCodeGrant(AuthorizationCodeRegistration reg)
Creates a temporarily code grant which will capture the information about the Client requesting the access to
the resource owner's resources |
ServerAuthorizationCodeGrant |
AuthorizationCodeDataProvider.removeCodeGrant(String code)
Returns the previously registered ServerAuthorizationCodeGrant |
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.grants.owner |
---|
Methods in org.apache.cxf.rs.security.oauth2.grants.owner that throw OAuthServiceException | |
---|---|
ServerAccessToken |
ResourceOwnerGrantHandler.createAccessToken(Client client,
javax.ws.rs.core.MultivaluedMap<String,String> params)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.grants.refresh |
---|
Methods in org.apache.cxf.rs.security.oauth2.grants.refresh that throw OAuthServiceException | |
---|---|
ServerAccessToken |
RefreshTokenGrantHandler.createAccessToken(Client client,
javax.ws.rs.core.MultivaluedMap<String,String> params)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.grants.saml |
---|
Methods in org.apache.cxf.rs.security.oauth2.grants.saml that throw OAuthServiceException | |
---|---|
ServerAccessToken |
Saml2BearerGrantHandler.createAccessToken(Client client,
javax.ws.rs.core.MultivaluedMap<String,String> params)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.provider |
---|
Methods in org.apache.cxf.rs.security.oauth2.provider that throw OAuthServiceException | |
---|---|
ServerAccessToken |
OAuthDataProvider.createAccessToken(AccessTokenRegistration accessToken)
Create access token |
ServerAccessToken |
AccessTokenGrantHandler.createAccessToken(Client client,
javax.ws.rs.core.MultivaluedMap<String,String> params)
|
UserSubject |
SubjectCreator.createUserSubject(MessageContext mc)
Create a UserSubject |
ServerAccessToken |
OAuthDataProvider.getAccessToken(String accessToken)
Get access token |
Client |
OAuthDataProvider.getClient(String clientId)
Returns the previously registered third-party Client |
ServerAccessToken |
OAuthDataProvider.getPreauthorizedToken(Client client,
List<String> requestedScopes,
UserSubject subject,
String grantType)
Get preauthorized access token |
ServerAccessToken |
OAuthDataProvider.refreshAccessToken(Client client,
String refreshToken,
List<String> requestedScopes)
Refresh access token |
void |
OAuthDataProvider.removeAccessToken(ServerAccessToken accessToken)
Removes the access token The runtime will call this method if it finds that a token has expired |
void |
OAuthDataProvider.revokeToken(Client client,
String token,
String tokenTypeHint)
Revokes a refresh or access token |
AccessTokenValidation |
AccessTokenValidator.validateAccessToken(MessageContext mc,
String authScheme,
String authSchemeData)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.services |
---|
Methods in org.apache.cxf.rs.security.oauth2.services with parameters of type OAuthServiceException | |
---|---|
protected javax.ws.rs.core.Response |
AbstractTokenService.handleException(OAuthServiceException ex,
String error)
|
Methods in org.apache.cxf.rs.security.oauth2.services that throw OAuthServiceException | |
---|---|
protected Client |
AbstractOAuthService.getValidClient(String clientId)
Get the Client reference |
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.tokens.hawk |
---|
Methods in org.apache.cxf.rs.security.oauth2.tokens.hawk that throw OAuthServiceException | |
---|---|
AccessTokenValidation |
HawkAccessTokenValidator.validateAccessToken(MessageContext mc,
String authScheme,
String authSchemeData)
|
void |
NonceVerifier.verifyNonce(String tokenKey,
String clientNonce,
String clientTimestamp)
|
void |
NonceVerifierImpl.verifyNonce(String tokenKey,
String clientNonceString,
String clientTimestampString)
|
Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.utils |
---|
Methods in org.apache.cxf.rs.security.oauth2.utils that throw OAuthServiceException | |
---|---|
static String |
MessageDigestUtils.generate(byte[] input)
|
static String |
MessageDigestUtils.generate(byte[] input,
String algo)
|
static String |
OAuthUtils.generateRandomTokenKey()
|
static String |
OAuthUtils.generateRandomTokenKey(String digestAlgo)
|
|
Apache CXF API | |||||||||
PREV NEXT | FRAMES NO FRAMES |