Interface JsonWebTokenSignatureValidator<T>

Type Parameters:
T - Signed Token
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface JsonWebTokenSignatureValidator<T>
API to validate the signature of a JSON Web Token with beans of type SignatureConfiguration.
Since:
4.8.0
Author:
Sergio del Amo
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    validateSignature(T signedToken)
     
  • Method Details

    • validateSignature

      boolean validateSignature(@NonNull T signedToken)
      Parameters:
      signedToken - signed token
      Returns:
      true if the token signature can be verified.