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.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.secrets.jwkset
Constructors in org.forgerock.secrets.jwkset with parameters of type JwksStore Constructor Description JwkSetSecretStore(JwksStore jwksStore)
Creates a secret store from aJwksStore
.JwkSetSecretStore(JwksStore jwksStore, Options options)
Creates a secret store from aJwksStore
.
-