Class ConversionErrorFieldValidator
java.lang.Object
org.apache.struts2.validator.validators.ValidatorSupport
org.apache.struts2.validator.validators.FieldValidatorSupport
org.apache.struts2.validator.validators.RepopulateConversionErrorFieldValidatorSupport
org.apache.struts2.validator.validators.ConversionErrorFieldValidator
- All Implemented Interfaces:
- FieldValidator,- ShortCircuitableValidator,- Validator
 Field Validator that checks if a conversion error occurred for this field.
 
 
 
- fieldName - The field name this validator is validating. Required if using Plain-Validator Syntax otherwise not required
     <!-- Plain Validator Syntax -->
     <validator type="conversion">
                <param name="fieldName">myField</param>
          <message>Conversion Error Occurred</message>
     </validator>
     <!-- Field Validator Syntax -->
     <field name="myField">
        <field-validator type="conversion">
           <message>Conversion Error Occurred</message>
        </field-validator>
     </field>
 
 - Author:
- Jason Carreira, tm_jee
- 
Field SummaryFields inherited from class org.apache.struts2.validator.validators.FieldValidatorSupportcurrentValue, fieldName, typeFields inherited from class org.apache.struts2.validator.validators.ValidatorSupportdefaultMessage, EMPTY_STRING, messageKey, stack, textProviderFactory
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoiddoValidate(Object object) The validation implementation must guarantee that setValidatorContext will be called with a non-null ValidatorContext before validate is called.Methods inherited from class org.apache.struts2.validator.validators.RepopulateConversionErrorFieldValidatorSupportescape, isRepopulateField, repopulateField, setRepopulateField, validateMethods 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- 
ConversionErrorFieldValidatorpublic ConversionErrorFieldValidator()
 
- 
- 
Method Details- 
doValidateThe validation implementation must guarantee that setValidatorContext will be called with a non-null ValidatorContext before validate is called.- Specified by:
- doValidatein class- RepopulateConversionErrorFieldValidatorSupport
- Parameters:
- object- the object to be validated
- Throws:
- ValidationException
 
 
-