Interface JWKCredential

  • All Superinterfaces:
    org.opensaml.security.credential.Credential
    All Known Implementing Classes:
    BasicJWKCredential

    public interface JWKCredential
    extends org.opensaml.security.credential.Credential
    Credential based on JSON Web Key (JWK).
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.nimbusds.jose.Algorithm getAlgorithm()
      Get algorithm of JWK.
      String getKid()
      Get kid of JWK.
      • Methods inherited from interface org.opensaml.security.credential.Credential

        getCredentialContextSet, getCredentialType, getEntityId, getKeyNames, getPrivateKey, getPublicKey, getSecretKey, getUsageType
    • 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.