Uses of Class
com.nimbusds.jose.jwk.JWKSet
-
Packages that use JWKSet Package Description com.nimbusds.jose.jwk JSON Web Key (JWK) classes.com.nimbusds.jose.jwk.source JSON Web Key (JWK) sourcing interface and utilities. -
-
Uses of JWKSet in com.nimbusds.jose.jwk
Methods in com.nimbusds.jose.jwk that return JWKSet Modifier and Type Method Description static JWKSetJWKSet. load(File file)Loads a JSON Web Key (JWK) set from the specified file.static JWKSetJWKSet. load(InputStream inputStream)Loads a JSON Web Key (JWK) set from the specified input stream.static JWKSetJWKSet. load(URL url)Loads a JSON Web Key (JWK) set from the specified URL.static JWKSetJWKSet. load(URL url, int connectTimeout, int readTimeout, int sizeLimit)Loads a JSON Web Key (JWK) set from the specified URL.static JWKSetJWKSet. load(URL url, int connectTimeout, int readTimeout, int sizeLimit, Proxy proxy)Loads a JSON Web Key (JWK) set from the specified URL.static JWKSetJWKSet. load(KeyStore keyStore, PasswordLookup pwLookup)Loads a JSON Web Key (JWK) set from the specified JCA key store.static JWKSetJWKSet. parse(String s)Parses the specified string representing a JSON Web Key (JWK) set.static JWKSetJWKSet. parse(Map<String,Object> json)Parses the specified JSON object representing a JSON Web Key (JWK) set.JWKSetJWKSet. toPublicJWKSet()Returns a copy of this JSON Web Key (JWK) set with all private keys and parameters removed.Methods in com.nimbusds.jose.jwk with parameters of type JWKSet Modifier and Type Method Description List<JWK>JWKSelector. select(JWKSet jwkSet)Selects the keys from the specified JWK set according to the matcher's criteria. -
Uses of JWKSet in com.nimbusds.jose.jwk.source
Methods in com.nimbusds.jose.jwk.source that return JWKSet Modifier and Type Method Description JWKSetDefaultJWKSetCache. get()JWKSetJWKSetCache. get()Gets the cached JWK set.JWKSetRemoteJWKSet. getCachedJWKSet()Returns the cached JWK set.JWKSetImmutableJWKSet. getJWKSet()Returns the JWK set.JWKSetJWKSetWithTimestamp. getJWKSet()Returns the JWK set.Methods in com.nimbusds.jose.jwk.source with parameters of type JWKSet Modifier and Type Method Description voidDefaultJWKSetCache. put(JWKSet jwkSet)voidJWKSetCache. put(JWKSet jwkSet)Puts the specified JWK set into the cache or clears the cache.Constructors in com.nimbusds.jose.jwk.source with parameters of type JWKSet Constructor Description ImmutableJWKSet(JWKSet jwkSet)Creates a new JWK source backed by an immutable JWK set.JWKSetWithTimestamp(JWKSet jwkSet)Creates a new JWK set with a timestamp set to now.JWKSetWithTimestamp(JWKSet jwkSet, Date timestamp)Creates a new JWK set with timestamp.
-