Package org.geant.security.jwk
Interface JWKCredential
-
- All Superinterfaces:
org.opensaml.security.credential.Credential
- All Known Implementing Classes:
BasicJWKCredential
public interface JWKCredential extends org.opensaml.security.credential.CredentialCredential based on JSON Web Key (JWK).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.nimbusds.jose.AlgorithmgetAlgorithm()Get algorithm of JWK.StringgetKid()Get kid of JWK.
-
-
-
Method Detail
-
getKid
@Nullable String getKid()
Get kid of JWK.- Returns:
- kid parameter.
-
getAlgorithm
@Nonnull com.nimbusds.jose.Algorithm getAlgorithm()
Get algorithm of JWK.- Returns:
- algorithm of JWK.
-
-