Interface RefreshTokenValidator
-
- 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 RefreshTokenValidatorResponsible for validating a refresh token is in a valid format. This logic is separate from determining if the refresh token has been revoked or otherwise not present in the persistence layer.- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<java.lang.String>validate(java.lang.String refreshToken)
-