Interface Validator<T>
-
- All Known Subinterfaces:
RepositoryValidator
- All Known Implementing Classes:
F3RepositoryValidator,Fedora3ObjectValidator
public interface Validator<T>The validation interface for all concrete validation logic.- Author:
- dbernstein
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ValidationResult>validate(T object)Performs the validation which, in turn, produces one or more results.
-
-
-
Method Detail
-
validate
List<ValidationResult> validate(T object)
Performs the validation which, in turn, produces one or more results.- Parameters:
object- The object to perform the validation on.- Returns:
- A list of one or more validation result objects.
-
-