Class DateRangeFieldValidator
java.lang.Object
org.apache.struts2.validator.validators.ValidatorSupport
org.apache.struts2.validator.validators.FieldValidatorSupport
org.apache.struts2.validator.validators.RangeValidatorSupport<Date>
org.apache.struts2.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 problematically 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.
- parse - if set to true, minExpression and maxExpression will be evaluated to find min/max
- minExpression - expression to calculate the minimum value (if none is specified, it will not be checked)
- maxExpression - expression to calculate the maximum value (if none is specified, it 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>
     <!-- Field Validator Syntax with expression -->
     <field name="birthday">
         <field-validator type="date">
             <param name="minExpression">${minValue}</param> <!-- will be evaluated as: Date getMinValue() -->
             <param name="maxExpression">${maxValue}</param> <!-- will be evaluated as: Date getMaxValue() -->
             <message>Age needs to be between ${min} and ${max}</message>
         </field-validator>
     </field>
 </validators>
 
 - Author:
- Jason Carreira
- 
Field SummaryFields inherited from class org.apache.struts2.validator.validators.FieldValidatorSupportcurrentValue, fieldNameFields inherited from class org.apache.struts2.validator.validators.ValidatorSupportdefaultMessage, EMPTY_STRING, messageKey, stack, textProviderFactory
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.apache.struts2.validator.validators.RangeValidatorSupportgetMax, getMin, getT, setMax, setMaxExpression, setMin, setMinExpression, validate, validateValueMethods inherited from class org.apache.struts2.validator.validators.FieldValidatorSupportgetCurrentValue, getFieldName, getValidatorType, setFieldName, setValidatorTypeMethods inherited from class org.apache.struts2.validator.validators.ValidatorSupportaddActionError, addFieldError, getDefaultMessage, getFieldValue, getMessage, getMessageKey, getMessageParameters, getValidatorContext, isShortCircuit, parse, setDefaultMessage, setMessageKey, setMessageParameters, setShortCircuit, setTextProviderFactory, setValidatorContext, setValueStackMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.struts2.validator.ValidatorgetDefaultMessage, getMessage, getMessageKey, getMessageParameters, getValidatorContext, setDefaultMessage, setMessageKey, setMessageParameters, setValidatorContext, setValueStack
- 
Constructor Details- 
DateRangeFieldValidatorpublic DateRangeFieldValidator()
 
-