Package org.javalite.validation.length
Class AttributeLengthValidator
java.lang.Object
org.javalite.validation.ValidatorAdapter
org.javalite.validation.length.AttributeLengthValidator
- All Implemented Interfaces:
Validator
Attribute length validator.
-
Method Summary
Modifier and TypeMethodDescriptionallowBlank(boolean allowBlank)
formatMessage(Locale locale, Object... params)
Provides default implementation, will look for a property in resource bundle, using set message as key.static AttributeLengthValidator
void
validate(Validatable m)
Called by framework when validation is requiredwith(LengthOption lengthOption)
Methods inherited from class org.javalite.validation.ValidatorAdapter
getMessage, pinMessage, setMessage
-
Method Details
-
on
-
validate
Description copied from interface:Validator
Called by framework when validation is required- Parameters:
m
- map being validated.
-
with
-
allowBlank
-
formatMessage
Description copied from class:ValidatorAdapter
Provides default implementation, will look for a property in resource bundle, using set message as key. If property in resource bundle not found, treats message verbatim.- Specified by:
formatMessage
in interfaceValidator
- Overrides:
formatMessage
in classValidatorAdapter
- Parameters:
locale
- locale to use, or null for default locale.params
- parameters in case a message is parametrized.- Returns:
- formatted message.
-