Class FrenchSirenFieldValidator
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.FrenchSirenFieldValidator
- All Implemented Interfaces:
com.opensymphony.xwork2.validator.FieldValidator,com.opensymphony.xwork2.validator.ShortCircuitableValidator,com.opensymphony.xwork2.validator.Validator
public class FrenchSirenFieldValidator extends NuitonFieldValidatorSupport
Validator for French SIREN numbers
Siret can be in:
- String format: "442116703"
- long, int: 442116703
- Array or Collection of something: [4,4,2,1,1,6,7,0,,3] or ["442","116","70", "3"]
- Since:
- 3.0 Validation do the Luhn checksum too
- Author:
- Sylvain Bavencoff - bavencoff@codelutin.com
-
Field Summary
Fields Modifier and Type Field Description protected static java.util.regex.Patternpprotected static java.lang.StringSIREN_REGEXP -
Constructor Summary
Constructors Constructor Description FrenchSirenFieldValidator() -
Method Summary
Modifier and Type Method Description java.lang.StringgetValidatorType()voidvalidateWhenNotSkip(java.lang.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, validateMethods inherited from class com.opensymphony.xwork2.validator.validators.FieldValidatorSupport
getCurrentValue, getFieldName, setFieldName, setValidatorTypeMethods 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
-
Field Details
-
SIREN_REGEXP
protected static final java.lang.String SIREN_REGEXP- See Also:
- Constant Field Values
-
p
protected static final java.util.regex.Pattern p
-
-
Constructor Details
-
FrenchSirenFieldValidator
public FrenchSirenFieldValidator()
-
-
Method Details
-
validateWhenNotSkip
public void validateWhenNotSkip(java.lang.Object object) throws com.opensymphony.xwork2.validator.ValidationExceptionDescription copied from class:NuitonFieldValidatorSupportMethod to be invoked when skip parameter was not evaludated totrue.- Specified by:
validateWhenNotSkipin classNuitonFieldValidatorSupport- Parameters:
object- the object to be validated.- Throws:
com.opensymphony.xwork2.validator.ValidationException- is thrown if there is validation error(s).
-
getValidatorType
public java.lang.String getValidatorType()- Specified by:
getValidatorTypein interfacecom.opensymphony.xwork2.validator.Validator- Overrides:
getValidatorTypein classcom.opensymphony.xwork2.validator.validators.FieldValidatorSupport
-