Apache CXF API

Uses of Interface
org.apache.cxf.rs.security.oauth2.provider.OAuthDataProvider

Packages that use OAuthDataProvider
org.apache.cxf.rs.security.oauth2.grants   
org.apache.cxf.rs.security.oauth2.grants.code   
org.apache.cxf.rs.security.oauth2.grants.refresh   
org.apache.cxf.rs.security.oauth2.services   
org.apache.cxf.rs.security.oauth2.tokens.hawk   
org.apache.cxf.rs.security.oauth2.utils.crypto   
 

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

Methods in org.apache.cxf.rs.security.oauth2.grants that return OAuthDataProvider
 OAuthDataProvider AbstractGrantHandler.getDataProvider()
           
 

Methods in org.apache.cxf.rs.security.oauth2.grants with parameters of type OAuthDataProvider
 void AbstractGrantHandler.setDataProvider(OAuthDataProvider dataProvider)
           
 

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

Subinterfaces of OAuthDataProvider in org.apache.cxf.rs.security.oauth2.grants.code
 interface AuthorizationCodeDataProvider
          AuthorizationCodeDataProvider is the OAuthDataProvider which can additionally persist the authorization code grant information
 

Classes in org.apache.cxf.rs.security.oauth2.grants.code that implement OAuthDataProvider
 class AbstractAuthorizationCodeDataProvider
          Abstract AuthorizationCodeDataProvider implementation
 

Uses of OAuthDataProvider in org.apache.cxf.rs.security.oauth2.grants.refresh
 

Methods in org.apache.cxf.rs.security.oauth2.grants.refresh with parameters of type OAuthDataProvider
 void RefreshTokenGrantHandler.setDataProvider(OAuthDataProvider dataProvider)
           
 

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

Methods in org.apache.cxf.rs.security.oauth2.services that return OAuthDataProvider
 OAuthDataProvider AbstractOAuthService.getDataProvider()
           
 

Methods in org.apache.cxf.rs.security.oauth2.services with parameters of type OAuthDataProvider
 void AbstractAccessTokenValidator.setDataProvider(OAuthDataProvider provider)
           
 void AbstractOAuthService.setDataProvider(OAuthDataProvider dataProvider)
           
 

Uses of OAuthDataProvider in org.apache.cxf.rs.security.oauth2.tokens.hawk
 

Methods in org.apache.cxf.rs.security.oauth2.tokens.hawk with parameters of type OAuthDataProvider
 void HawkAccessTokenValidator.setDataProvider(OAuthDataProvider dataProvider)
           
 

Uses of OAuthDataProvider in org.apache.cxf.rs.security.oauth2.utils.crypto
 

Methods in org.apache.cxf.rs.security.oauth2.utils.crypto with parameters of type OAuthDataProvider
static ServerAccessToken ModelEncryptionSupport.decryptAccessToken(OAuthDataProvider provider, String encodedToken, Key secretKey)
           
static ServerAccessToken ModelEncryptionSupport.decryptAccessToken(OAuthDataProvider provider, String encodedData, Key secretKey, KeyProperties props)
           
static ServerAccessToken ModelEncryptionSupport.decryptAccessToken(OAuthDataProvider provider, String encodedToken, String encodedSecretKey)
           
static ServerAccessToken ModelEncryptionSupport.decryptAccessToken(OAuthDataProvider provider, String encodedToken, String encodedSecretKey, KeyProperties props)
           
static ServerAuthorizationCodeGrant ModelEncryptionSupport.decryptCodeGrant(OAuthDataProvider provider, String encodedToken, Key key)
           
static ServerAuthorizationCodeGrant ModelEncryptionSupport.decryptCodeGrant(OAuthDataProvider provider, String encodedData, Key key, KeyProperties props)
           
static ServerAuthorizationCodeGrant ModelEncryptionSupport.decryptCodeGrant(OAuthDataProvider provider, String encodedToken, String encodedSecretKey)
           
static ServerAuthorizationCodeGrant ModelEncryptionSupport.decryptCodeGrant(OAuthDataProvider provider, String encodedToken, String encodedSecretKey, KeyProperties props)
           
static RefreshToken ModelEncryptionSupport.decryptRefreshToken(OAuthDataProvider provider, String encodedToken, Key key)
           
static RefreshToken ModelEncryptionSupport.decryptRefreshToken(OAuthDataProvider provider, String encodedData, Key key, KeyProperties props)
           
static RefreshToken ModelEncryptionSupport.decryptRefreshToken(OAuthDataProvider provider, String encodedToken, String encodedSecretKey)
           
static RefreshToken ModelEncryptionSupport.decryptRefreshToken(OAuthDataProvider provider, String encodedToken, String encodedSecretKey, KeyProperties props)
           
static ServerAccessToken ModelEncryptionSupport.recreateAccessToken(OAuthDataProvider provider, String newTokenKey, String decryptedSequence)
           
static ServerAuthorizationCodeGrant ModelEncryptionSupport.recreateCodeGrant(OAuthDataProvider provider, String decryptedSequence)
           
static RefreshToken ModelEncryptionSupport.recreateRefreshToken(OAuthDataProvider provider, String newTokenKey, String decryptedSequence)
           
 


Apache CXF API

Apache CXF