Interface JwksSignatureConfiguration
-
- All Known Implementing Classes:
JwksSignatureConfigurationProperties
public interface JwksSignatureConfiguration
JSON Web Key Set Configuration.- Since:
- 1.1.0
- Author:
- Sergio del Amo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.nimbusds.jose.jwk.KeyType
getKeyType()
Representation the KeyType for this JWKS signature configuration.java.lang.String
getUrl()
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.
-
-