Apache CXF API

Uses of Class
org.apache.cxf.rs.security.oauth2.provider.OAuthServiceException

Packages that use OAuthServiceException
org.apache.cxf.rs.security.oauth2.client   
org.apache.cxf.rs.security.oauth2.filters   
org.apache.cxf.rs.security.oauth2.grants.clientcred   
org.apache.cxf.rs.security.oauth2.grants.code   
org.apache.cxf.rs.security.oauth2.grants.owner   
org.apache.cxf.rs.security.oauth2.grants.refresh   
org.apache.cxf.rs.security.oauth2.provider   
org.apache.cxf.rs.security.oauth2.tokens.mac   
org.apache.cxf.rs.security.oauth2.utils   
 

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(OAuthClientUtils.Consumer consumer, ClientAccessToken accessToken)
          Creates OAuth Authorization header with Bearer scheme
static String OAuthClientUtils.createAuthorizationHeader(OAuthClientUtils.Consumer consumer, 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, 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, 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 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.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)
           
 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, UserSubject subject, String grantType)
          Get preauthorized access token
 ServerAccessToken OAuthDataProvider.refreshAccessToken(String clientId, String refreshToken)
          Refresh access token
 void OAuthDataProvider.removeAccessToken(ServerAccessToken accessToken)
          Removes the token
 AccessTokenValidation AccessTokenValidator.validateAccessToken(MessageContext mc, String authScheme, String authSchemeData)
           
 

Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.tokens.mac
 

Methods in org.apache.cxf.rs.security.oauth2.tokens.mac that throw OAuthServiceException
 AccessTokenValidation MacAccessTokenValidator.validateAccessToken(MessageContext mc, String authScheme, String authSchemeData)
           
 void NonceVerifier.verifyNonce(String tokenKey, String clientNonce, String clientTimestamp)
           
 

Uses of OAuthServiceException in org.apache.cxf.rs.security.oauth2.utils
 

Methods in org.apache.cxf.rs.security.oauth2.utils that throw OAuthServiceException
 String MD5SequenceGenerator.generate(byte[] input)
           
static String OAuthUtils.generateRandomTokenKey()
           
 


Apache CXF API

Apache CXF