com.opensymphony.xwork2.validator.validators
Class RegexFieldValidator
java.lang.Object
com.opensymphony.xwork2.validator.validators.ValidatorSupport
com.opensymphony.xwork2.validator.validators.FieldValidatorSupport
com.opensymphony.xwork2.validator.validators.RegexFieldValidator
- All Implemented Interfaces:
- FieldValidator, ShortCircuitableValidator, Validator
- Direct Known Subclasses:
- EmailValidator
public class RegexFieldValidator
- extends FieldValidatorSupport
Validates a string field using a regular expression.
- fieldName - The field name this validator is validating. Required if using Plain-Validator Syntax otherwise not required
- expression - The RegExp expression REQUIRED
- caseSensitive - Boolean (Optional). Sets whether the expression should be matched against in a case-sensitive way. Default is
true
.
- trim - Boolean (Optional). Sets whether the expression should be trimed before matching. Default is
true
.
<validators>
<!-- Plain Validator Syntax -->
<validator type="regex">
<param name="fieldName">myStrangePostcode</param>
<param name="expression"><![CDATA[([aAbBcCdD][123][eEfFgG][456])]]<>/param>
</validator>
<!-- Field Validator Syntax -->
<field name="myStrangePostcode">
<field-validator type="regex">
<param name="expression"><![CDATA[([aAbBcCdD][123][eEfFgG][456])]]></param>
</field-validator>
</field>
</validators>
- Version:
- $Date: 2007-03-31 23:48:53 +0200 (Sat, 31 Mar 2007) $ $Revision: 1425 $
- Author:
- Quake Wang
Method Summary |
String |
getExpression()
|
boolean |
isCaseSensitive()
|
boolean |
isTrimed()
|
void |
setCaseSensitive(boolean caseSensitive)
Sets whether the expression should be matched against in
a case-sensitive way. |
void |
setExpression(String expression)
Sets the regular expression to be matched. |
void |
setTrim(boolean trim)
Sets whether the expression should be trimed before matching. |
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.xwork2.validator.validators.ValidatorSupport |
addActionError, addFieldError, conditionalParse, getDefaultMessage, getFieldValue, getMessage, getMessageKey, getParse, getValidatorContext, isShortCircuit, setDefaultMessage, setMessageKey, setParse, setShortCircuit, setValidatorContext, setValueStack |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
expression
private String expression
caseSensitive
private boolean caseSensitive
trim
private boolean trim
RegexFieldValidator
public RegexFieldValidator()
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.
- Parameters:
object
- the object to be validated.
- Throws:
ValidationException
- is thrown if there is validation error(s).
getExpression
public String getExpression()
- Returns:
- Returns the regular expression to be matched.
setExpression
public void setExpression(String expression)
- 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
.
isTrimed
public boolean isTrimed()
- Returns:
- Returns whether the expression should be trimed before matching.
Default is
true
.
setTrim
public void setTrim(boolean trim)
- Sets whether the expression should be trimed before matching.
Default is
true
.
Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.