Interface JwksSignatureConfiguration
-
- All Known Implementing Classes:
JwksSignatureConfigurationProperties
public interface JwksSignatureConfigurationJSON Web Key Set Configuration.- Since:
- 1.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.IntegergetCacheExpiration()com.nimbusds.jose.jwk.KeyTypegetKeyType()Representation the KeyType for this JWKS signature configuration.java.lang.StringgetUrl()Json Web Key Set endpoint url.
-
-
-
Method Detail
-
getUrl
@NonNull java.lang.String getUrl()
Json Web Key Set endpoint url.- Returns:
- returns a url where a JWKS is exposed.
-
getKeyType
@Nullable com.nimbusds.jose.jwk.KeyType getKeyType()
Representation the KeyType for this JWKS signature configuration. KeyType is the kty parameter in a JSON Web Key (JWK).- Returns:
- The KeyType for the JWKS signature configuration.
-
getCacheExpiration
@NonNull java.lang.Integer getCacheExpiration()
- Returns:
- The number of seconds to cache the JWKS.
-
-