com.opensymphony.xwork.validator.validators
Class StringRegexValidator

java.lang.Object
  extended by com.opensymphony.xwork.validator.validators.ValidatorSupport
      extended by com.opensymphony.xwork.validator.validators.FieldValidatorSupport
          extended by com.opensymphony.xwork.validator.validators.StringRegexValidator
All Implemented Interfaces:
FieldValidator, ShortCircuitableValidator, Validator
Direct Known Subclasses:
EmailValidator

public class StringRegexValidator
extends FieldValidatorSupport

StringRegexValidator checks that a given String field, if not empty, matches the configured regular expression.

Author:
jhouse
See Also:
setRegex(String), setCaseSensitive(boolean)

Field Summary
 
Fields inherited from class com.opensymphony.xwork.validator.validators.ValidatorSupport
defaultMessage, log, messageKey
 
Constructor Summary
StringRegexValidator()
           
 
Method Summary
 String getRegex()
           
 boolean isCaseSensitive()
           
 void setCaseSensitive(boolean caseSensitive)
          Sets whether the expression should be matched against in a case-sensitive way.
 void setRegex(String regex)
          Sets the regular expression to be matched.
 void validate(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 com.opensymphony.xwork.validator.validators.FieldValidatorSupport
getFieldName, getValidatorType, setFieldName, setValidatorType
 
Methods inherited from class com.opensymphony.xwork.validator.validators.ValidatorSupport
addActionError, addFieldError, getDefaultMessage, getFieldValue, getMessage, getMessageKey, getValidatorContext, isShortCircuit, setDefaultMessage, setMessageKey, setShortCircuit, setValidatorContext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.opensymphony.xwork.validator.Validator
getDefaultMessage, getMessage, getMessageKey, getValidatorContext, setDefaultMessage, setMessageKey, setValidatorContext
 

Constructor Detail

StringRegexValidator

public StringRegexValidator()
Method Detail

validate

public void validate(Object object)
              throws ValidationException
Description copied from interface: Validator
The validation implementation must guarantee that setValidatorContext will be called with a non-null ValidatorContext before validate is called.

Throws:
ValidationException

getRegex

public String getRegex()
Returns:
Returns the regular expression to be matched.

setRegex

public void setRegex(String regex)
Sets the regular expression to be matched.


isCaseSensitive

public boolean isCaseSensitive()
Returns:
Returns whether the expression should be matched against in a case-sensitive way. Default is true.

setCaseSensitive

public void setCaseSensitive(boolean caseSensitive)
Sets whether the expression should be matched against in a case-sensitive way. Default is true.


XWork Project Page