`JwtClaimValidator` could be a nice generalization of `JwtIssuerValidator`. Something like: ```java public JwtClaimValidator(String claim, Predicate<T> test) ``` Where `claim` is the name of the claim to validate, `test` is the test to perform, and `T` is the claim value's type.