Uses of Interface
org.forgerock.util.Supplier
-
Packages that use Supplier Package Description org.forgerock.http.oauth2 This package provides APIs for OAuth 2.0 services implementations.org.forgerock.http.oauth2.resolver This package defines OpenAM specific logic needed to retrieve anAccessTokenInfo.org.forgerock.openig.filter.oauth2 This package contains the OAuth2 Token validation filter that acts as an OAuth 2 Resource Server.org.forgerock.openig.filter.oauth2.cnf JWT confirmation key support for access tokens.org.forgerock.util Provides common interfaces and classes.org.forgerock.util.promise An implementation of thePromiseAPI in Java. -
-
Uses of Supplier in org.forgerock.http.oauth2
Methods in org.forgerock.http.oauth2 with parameters of type Supplier Modifier and Type Method Description default Promise<AccessTokenInfo,AccessTokenException>AccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token)Resolves a given access token against an authorization server. -
Uses of Supplier in org.forgerock.http.oauth2.resolver
Methods in org.forgerock.http.oauth2.resolver with parameters of type Supplier Modifier and Type Method Description Promise<AccessTokenInfo,AccessTokenException>CachingAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token)Promise<AccessTokenInfo,AccessTokenException>OpenAmAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token)Deprecated.Promise<AccessTokenInfo,AccessTokenException>TokenIntrospectionAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token) -
Uses of Supplier in org.forgerock.openig.filter.oauth2
Methods in org.forgerock.openig.filter.oauth2 with parameters of type Supplier Modifier and Type Method Description Promise<AccessTokenInfo,AccessTokenException>CaffeineCacheAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token)Promise<AccessTokenInfo,AccessTokenException>ScriptableAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token)Promise<AccessTokenInfo,AccessTokenException>StatelessAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token) -
Uses of Supplier in org.forgerock.openig.filter.oauth2.cnf
Methods in org.forgerock.openig.filter.oauth2.cnf with parameters of type Supplier Modifier and Type Method Description Promise<AccessTokenInfo,AccessTokenException>ConfirmationKeyVerifierAccessTokenResolver. resolve(Context context, Supplier<Request,IOException> request, String token) -
Uses of Supplier in org.forgerock.util
Classes in org.forgerock.util that implement Supplier Modifier and Type Class Description classLazySupplier<T,E extends Exception>ASupplierthat lazily computes a value the first time it is accessed and then caches the result to return on subsequent requests.Methods in org.forgerock.util with parameters of type Supplier Modifier and Type Method Description static <T,E extends Exception>
LazySupplier<T,E>LazySupplier. lazy(Supplier<T,E> supplier)Constructs a supplier that will lazily compute and cache a value from the given supplier.static <T,E extends Exception>
Supplier<T>LambdaExceptionUtils. rethrowSupplier(Supplier<T,E> supplier) -
Uses of Supplier in org.forgerock.util.promise
Methods in org.forgerock.util.promise with parameters of type Supplier Modifier and Type Method Description static <T,E extends Exception>
Promise<T,E>Promises. executeAsync(Executor executor, Supplier<T,E> supplier)Execute the provided supplier through the executor and returns immediately aPromisethat will be completed once the supplier has been executed.static <V,E extends Exception>
Promise<V,E>Promises. newPromise(Supplier<V,E> supplier)Execute a task and return the result as aPromise.
-