Interface ReactiveJsonWebTokenSignatureValidator<T>

Type Parameters:
T - The 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 ReactiveJsonWebTokenSignatureValidator<T>
Reactive API to validate the signature of a JSON Web Token with beans of type ReactiveSignatureConfiguration and SignatureConfiguration.
Since:
4.8.0
Author:
Sergio del Amo
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull org.reactivestreams.Publisher<Boolean>
    validateSignature(T signedToken)
     
  • Method Details

    • validateSignature

      @SingleResult @NonNull @NonNull org.reactivestreams.Publisher<Boolean> validateSignature(@NonNull T signedToken)
      Parameters:
      signedToken - signed token
      Returns:
      A publisher with a single result with a true boolean if the token signature can be verified.