com.opensymphony.xwork2.validator.validators
public class: DateRangeFieldValidator [javadoc |
source]
java.lang.Object
com.opensymphony.xwork2.validator.validators.ValidatorSupport
com.opensymphony.xwork2.validator.validators.FieldValidatorSupport
com.opensymphony.xwork2.validator.validators.AbstractRangeValidator
com.opensymphony.xwork2.validator.validators.DateRangeFieldValidator
All Implemented Interfaces:
FieldValidator, ShortCircuitableValidator, Validator
Field Validator that checks if the date supplied is within a specific range.
NOTE: If no date converter is specified, XWorkBasicConverter will kick
in to do the date conversion, which by default using the
Date.SHORT format using
the a programmatically specified locale else falling back to the system
default locale.
- fieldName - The field name this validator is validating. Required if using Plain-Validator Syntax otherwise not required
- min - the min date range. If not specified will not be checked.
- max - the max date range. If not specified will not be checked.
<validators>
<!-- Plain Validator syntax -->
<validator type="date">
<param name="fieldName">birthday</param>
<param name="min">01/01/1990</param>
<param name="max">01/01/2000</param>
<message>Birthday must be within ${min} and ${max}</message>
</validator>
<!-- Field Validator Syntax -->
<field name="birthday">
<field-validator type="date">
<param name="min">01/01/1990</param>
<param name="max">01/01/2000</param>
<message>Birthday must be within ${min} and ${max}</message>
</field>
</field>
</validators>
- author:
Jason - Carreira
- version:
$ - Date: 2006-10-27 07:48:38 +0200 (Fri, 27 Oct 2006) $ $Id: DateRangeFieldValidator.java 1177 2006-10-27 07:48:38 +0200 (Fri, 27 Oct 2006) mrdon $
| Methods from com.opensymphony.xwork2.validator.validators.ValidatorSupport: |
|---|
|
addActionError, addFieldError, conditionalParse, getDefaultMessage, getFieldValue, getMessage, getMessageKey, getParse, getValidatorContext, getValidatorType, isShortCircuit, setDefaultMessage, setMessageKey, setParse, setShortCircuit, setValidatorContext, setValidatorType, setValueStack |