Uses of Class
org.forgerock.oauth2.core.AccessTokenVerifier
-
Packages that use AccessTokenVerifier Package Description org.forgerock.oauth2.core Defines the core classes to implement OAuth2 for OpenAM.org.forgerock.oauth2.restlet org.forgerock.openidconnect -
-
Uses of AccessTokenVerifier in org.forgerock.oauth2.core
Constructors in org.forgerock.oauth2.core with parameters of type AccessTokenVerifier Constructor Description TokenInfoService(OAuth2ProviderSettingsFactory providerSettingsFactory, AccessTokenVerifier headerTokenVerifier, AccessTokenVerifier queryTokenVerifier, ClientRegistrationStore clientRegistrationStore)Constructs a new TokenInfoServiceImpl. -
Uses of AccessTokenVerifier in org.forgerock.oauth2.restlet
Subclasses of AccessTokenVerifier in org.forgerock.oauth2.restlet Modifier and Type Class Description classRestletFormBodyAccessTokenVerifierVerifies that a OAuth2 request that is made to one of the protected endpoints on the OAuth2 provider, (i.e. tokeninfo, userinfo) contains a valid access token specified in the request body.classRestletHeaderAccessTokenVerifierVerifies that a OAuth2 request that is made to one of the protected endpoints on the OAuth2 provider, (i.e. tokeninfo, userinfo) contains a valid access token specified in the request header.classRestletQueryParameterAccessTokenVerifierVerifies that a OAuth2 request that is made to one of the protected endpoints on the OAuth2 provider, (i.e. tokeninfo, userinfo) contains a valid access token specified in the request query parameter list. -
Uses of AccessTokenVerifier in org.forgerock.openidconnect
Constructors in org.forgerock.openidconnect with parameters of type AccessTokenVerifier Constructor Description UserInfoService(TokenStore tokenStore, OAuth2ProviderSettingsFactory providerSettingsFactory, AccessTokenVerifier headerTokenVerifier, AccessTokenVerifier formTokenVerifier, ClientRegistrationStore clientRegistrationStore)Constructs a new UserInfoServiceImpl.
-