Apache CXF API

Uses of Class
org.apache.cxf.rs.security.oauth2.common.ServerAccessToken

Packages that use ServerAccessToken
org.apache.cxf.rs.security.oauth2.filters   
org.apache.cxf.rs.security.oauth2.grants   
org.apache.cxf.rs.security.oauth2.grants.clientcred   
org.apache.cxf.rs.security.oauth2.grants.code   
org.apache.cxf.rs.security.oauth2.provider   
org.apache.cxf.rs.security.oauth2.services   
org.apache.cxf.rs.security.oauth2.tokens.bearer   
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.filters
 

Methods in org.apache.cxf.rs.security.oauth2.filters that return ServerAccessToken
protected  ServerAccessToken OAuthRequestFilter.getAccessToken()
          Get the access token
 

Methods in org.apache.cxf.rs.security.oauth2.filters with parameters of type ServerAccessToken
protected  SecurityContext OAuthRequestFilter.createSecurityContext(javax.servlet.http.HttpServletRequest request, ServerAccessToken token)
           
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.grants
 

Methods in org.apache.cxf.rs.security.oauth2.grants that return ServerAccessToken
protected  ServerAccessToken AbstractGrantHandler.doCreateAccessToken(Client client, UserSubject subject, List<String> requestedScope)
           
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.grants.clientcred
 

Methods in org.apache.cxf.rs.security.oauth2.grants.clientcred that return ServerAccessToken
 ServerAccessToken ClientCredentialsGrantHandler.createAccessToken(Client client, javax.ws.rs.core.MultivaluedMap<String,String> params)
           
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.grants.code
 

Methods in org.apache.cxf.rs.security.oauth2.grants.code that return ServerAccessToken
 ServerAccessToken AuthorizationCodeGrantHandler.createAccessToken(Client client, javax.ws.rs.core.MultivaluedMap<String,String> params)
           
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.provider
 

Methods in org.apache.cxf.rs.security.oauth2.provider that return ServerAccessToken
 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
 ServerAccessToken AccessTokenValidator.getAccessToken(String schemeData)
           
 ServerAccessToken OAuthDataProvider.getPreauthorizedToken(Client client, UserSubject subject, String grantType)
          TODO: Consider introducing a dedicated entity representing a user pre authorization Get preauthorized access token
 ServerAccessToken OAuthDataProvider.refreshAccessToken(String clientId, String refreshToken)
          Refresh access token
 

Methods in org.apache.cxf.rs.security.oauth2.provider with parameters of type ServerAccessToken
 void OAuthDataProvider.removeAccessToken(ServerAccessToken accessToken)
          Removes the token
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.services
 

Methods in org.apache.cxf.rs.security.oauth2.services with parameters of type ServerAccessToken
protected  javax.ws.rs.core.Response AuthorizationCodeGrantService.createGrant(javax.ws.rs.core.MultivaluedMap<String,String> params, Client client, String redirectUri, List<String> requestedScope, List<String> approvedScope, UserSubject userSubject, ServerAccessToken preauthorizedToken)
           
protected abstract  javax.ws.rs.core.Response RedirectionBasedGrantService.createGrant(javax.ws.rs.core.MultivaluedMap<String,String> params, Client client, String redirectUri, List<String> requestedScope, List<String> approvedScope, UserSubject userSubject, ServerAccessToken preAuthorizedToken)
           
protected  javax.ws.rs.core.Response ImplicitGrantService.createGrant(javax.ws.rs.core.MultivaluedMap<String,String> params, Client client, String redirectUri, List<String> requestedScope, List<String> approvedScope, UserSubject userSubject, ServerAccessToken preAuthorizedToken)
           
 

Uses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.tokens.bearer
 

Subclasses of ServerAccessToken in org.apache.cxf.rs.security.oauth2.tokens.bearer
 class BearerAccessToken
          Simple Bearer Access Token implementations
 


Apache CXF API

Apache CXF