Interface Validator<T>
-
- Type Parameters:
T- the type of the object to be validated.
- All Known Implementing Classes:
CombiningValidator,JwtAudienceValidator,JwtX5tValidator
public interface Validator<T>Generic validator interface over typeValidator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValidationResultvalidate(T t)Validates the given object.
-
-
-
Method Detail
-
validate
ValidationResult validate(T t)
Validates the given object.- Parameters:
t- the object of typeValidatorto be validated.- Returns:
- the validation result as
ValidationResult.
-
-