Class AbstractTextValueValidator
- java.lang.Object
-
- org.camunda.bpm.engine.impl.form.validator.AbstractTextValueValidator
-
- All Implemented Interfaces:
FormFieldValidator
- Direct Known Subclasses:
MaxLengthValidator,MinLengthValidator
public abstract class AbstractTextValueValidator extends Object implements FormFieldValidator
- Author:
- Daniel Meyer
-
-
Constructor Summary
Constructors Constructor Description AbstractTextValueValidator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected booleanisNullValid()booleanvalidate(Object submittedValue, FormFieldValidatorContext validatorContext)return true if the submitted value is valid for the given form field.protected abstract booleanvalidate(String submittedValue, String configuration)
-
-
-
Method Detail
-
validate
public boolean validate(Object submittedValue, FormFieldValidatorContext validatorContext)
Description copied from interface:FormFieldValidatorreturn true if the submitted value is valid for the given form field.- Specified by:
validatein interfaceFormFieldValidator- 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.
-
isNullValid
protected boolean isNullValid()
-
-