Class NotExistingDirectoryFieldValidator
- java.lang.Object
-
- com.opensymphony.xwork2.validator.validators.ValidatorSupport
-
- com.opensymphony.xwork2.validator.validators.FieldValidatorSupport
-
- org.nuiton.validator.xwork2.field.NuitonFieldValidatorSupport
-
- org.nuiton.validator.xwork2.field.NotExistingDirectoryFieldValidator
-
- All Implemented Interfaces:
com.opensymphony.xwork2.validator.FieldValidator
,com.opensymphony.xwork2.validator.ShortCircuitableValidator
,com.opensymphony.xwork2.validator.Validator
public class NotExistingDirectoryFieldValidator extends NuitonFieldValidatorSupport
NotExistingDirectoryFieldValidator checks that a File field as a directory does not exist. *- fieldName - The field name this validator is validating. Required if using Plain-Validator Syntax otherwise not required
<validators> <!-- Plain-Validator Syntax --> <validator type="notExistingDirectory"> <param name="fieldName">tmp</param> <message>tmp is an existing directory</message> </validator> <!-- Field-Validator Syntax --> <field name="tmp"> <field-validator type="notExistingDirectory"> <message>tmp is an existing directory</message> </field-validator> </field> </validators>
- Author:
- Tony Chemit - chemit@codelutin.com
-
-
Field Summary
-
Fields inherited from class org.nuiton.validator.xwork2.field.NuitonFieldValidatorSupport
skip
-
-
Constructor Summary
Constructors Constructor Description NotExistingDirectoryFieldValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValidatorType()
void
validateWhenNotSkip(Object object)
Method to be invoked when skip parameter was not evaludated totrue
.-
Methods inherited from class org.nuiton.validator.xwork2.field.NuitonFieldValidatorSupport
evaluateSkipParameter, getFieldValue, setSkip, validate
-
Methods inherited from class com.opensymphony.xwork2.validator.validators.FieldValidatorSupport
getCurrentValue, getFieldName, setFieldName, setValidatorType
-
Methods inherited from class com.opensymphony.xwork2.validator.validators.ValidatorSupport
addActionError, addFieldError, getDefaultMessage, getMessage, getMessageKey, getMessageParameters, getValidatorContext, isShortCircuit, parse, setDefaultMessage, setMessageKey, setMessageParameters, setShortCircuit, setTextProviderFactory, setValidatorContext, setValueStack
-
-
-
-
Method Detail
-
validateWhenNotSkip
public void validateWhenNotSkip(Object object) throws com.opensymphony.xwork2.validator.ValidationException
Description copied from class:NuitonFieldValidatorSupport
Method to be invoked when skip parameter was not evaludated totrue
.- Specified by:
validateWhenNotSkip
in classNuitonFieldValidatorSupport
- Parameters:
object
- the object to be validated.- Throws:
com.opensymphony.xwork2.validator.ValidationException
- is thrown if there is validation error(s).
-
getValidatorType
public String getValidatorType()
- Specified by:
getValidatorType
in interfacecom.opensymphony.xwork2.validator.Validator
- Overrides:
getValidatorType
in classcom.opensymphony.xwork2.validator.validators.FieldValidatorSupport
-
-