Uses of Class
org.forgerock.http.oauth2.AccessTokenInfo
Packages that use AccessTokenInfo
Package
Description
This package provides APIs for OAuth 2.0 services implementations.
This package defines OpenAM specific logic needed to retrieve an
AccessTokenInfo.-
Uses of AccessTokenInfo in org.forgerock.http.oauth2
Methods in org.forgerock.http.oauth2 that return AccessTokenInfoModifier and TypeMethodDescriptionOAuth2Context.getAccessToken()Returns the access token associated with this OAuth2 context.Methods in org.forgerock.http.oauth2 that return types with arguments of type AccessTokenInfoModifier and TypeMethodDescriptiondefault Promise<AccessTokenInfo,AccessTokenException> Deprecated, for removal: This API element is subject to removal in a future version.default Promise<AccessTokenInfo,AccessTokenException> Resolves a given access token against an authorization server.Constructors in org.forgerock.http.oauth2 with parameters of type AccessTokenInfoModifierConstructorDescriptionOAuth2Context(Context parent, AccessTokenInfo accessToken) Creates a new OAuth2 context with the providedAccessTokenInfo. -
Uses of AccessTokenInfo in org.forgerock.http.oauth2.resolver
Methods in org.forgerock.http.oauth2.resolver that return types with arguments of type AccessTokenInfoModifier and TypeMethodDescriptionCachingAccessTokenResolver.resolve(Context context, Supplier<Request, IOException> request, String token) OpenAmAccessTokenResolver.resolve(Context context, Supplier<Request, IOException> request, String token) Deprecated.TokenIntrospectionAccessTokenResolver.resolve(Context context, Supplier<Request, IOException> request, String token) Constructor parameters in org.forgerock.http.oauth2.resolver with type arguments of type AccessTokenInfoModifierConstructorDescriptionCachingAccessTokenResolver(Clock clock, AccessTokenResolver resolver, PerItemEvictionStrategyCache<String, Promise<AccessTokenInfo, AccessTokenException>> cache) Builds aCachingAccessTokenResolverdelegating to the givenAccessTokenResolverusing the given (pre-configured) cache.
AccessTokenResolver.resolve(Context, Supplier, String)instead.