Uses of Class
org.forgerock.json.jose.jwk.store.JwksStore
-
Packages that use JwksStore Package Description org.forgerock.json.jose.jwk.store This package contains classes to manage a JWKs URI.org.forgerock.oauth.resolvers This package contains classes to generate Open ID Resolvers, which can validate a supplied JWS against an Open ID Connect provider.org.forgerock.secrets.jwkset Secret store backend for retrieving keys from a local or remote JWK Set. -
-
Uses of JwksStore in org.forgerock.json.jose.jwk.store
Methods in org.forgerock.json.jose.jwk.store that return JwksStore Modifier and Type Method Description JwksStore
JwksStoreService. configureJwksStore(String uid, Duration cacheTimeout, Duration cacheMissCacheTime, URL jwkUrl)
Deprecated.UseJwksStoreService.configureJwksStore(String, Duration, Duration, URL, Clock)
with an explicit clock.JwksStore
JwksStoreService. configureJwksStore(String uid, Duration cacheTimeout, Duration cacheMissCacheTime, URL jwkUrl, Clock clock)
Deprecated.JwksStore
JwksStoreService. getJwksStore(String uid)
Returns the appropriate JWKs store.Methods in org.forgerock.json.jose.jwk.store that return types with arguments of type JwksStore Modifier and Type Method Description Promise<JwksStore,FailedToLoadJWKException>
JwksStoreService. configureJwksStoreAsync(String uid, Duration cacheTimeout, Duration cacheMissCacheTime, URL jwkUrl, Clock clock)
Configure a JWKs store.static Promise<JwksStore,FailedToLoadJWKException>
JwksStore. newJwksStore(Duration cacheTimeout, Duration cacheMissCacheTime, URL jwkUrl, JWKSetParser jwkSetParser, Clock clock)
Create a new JWKs store asynchronously. -
Uses of JwksStore in org.forgerock.oauth.resolvers
Constructors in org.forgerock.oauth.resolvers with parameters of type JwksStore Constructor Description JWKOpenIdResolverImpl(String issuer, JwksStore jwksStore)
Constructor using provided timeout values to generate theSimpleHTTPClient
used for communicating over HTTP. -
Uses of JwksStore in org.forgerock.secrets.jwkset
Constructors in org.forgerock.secrets.jwkset with parameters of type JwksStore Constructor Description JwkSetSecretStore(JwksStore jwksStore)
Creates a secret store from a remote JWK Set.
-