Interface FormFieldValidator
- All Known Implementing Classes:
AbstractNumericValidator,AbstractTextValueValidator,DelegateFormFieldValidator,MaxLengthValidator,MaxValidator,MinLengthValidator,MinValidator,ReadOnlyValidator,RequiredValidator
public interface FormFieldValidator
Interface for implenting form field validators.
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionbooleanvalidate(Object submittedValue, FormFieldValidatorContext validatorContext) return true if the submitted value is valid for the given form field.
-
Method Details
-
validate
return true if the submitted value is valid for the given form field.- Parameters:
submittedValue- the value submitted to the form fieldvalidatorContext- object providing access to additional information useful wile validating the form- Returns:
- true if the value is valid, false otherwise.
-