|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.opensymphony.xwork.validator.ActionValidatorManager
This is the entry point into XWork's rule-based validation framework. Validation rules are specified in XML configuration files named "className-contextName-validation.xml" where className is the name of the class the configuration is for and -contextName is optional (contextName is an arbitrary key that is used to look up additional validation rules for a specific context).
Field Summary | |
protected static String |
VALIDATION_CONFIG_SUFFIX
The file suffix for any validation file. |
Constructor Summary | |
ActionValidatorManager()
|
Method Summary | |
protected static String |
buildValidatorKey(Class clazz,
String context)
Builds a key for validators - used when caching validators. |
static List |
getValidators(Class clazz,
String context)
Returns a list of validators for the given class and context. |
static void |
validate(Object object,
String context)
Validates the given object using action and its context. |
static void |
validate(Object object,
String context,
ValidatorContext validatorContext)
Validates an action give its context and a validation context. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected static final String VALIDATION_CONFIG_SUFFIX
Constructor Detail |
public ActionValidatorManager()
Method Detail |
public static List getValidators(Class clazz, String context)
clazz
- the class to lookup.context
- the context of the action class - can be null.
public static void validate(Object object, String context) throws ValidationException
object
- the action to validate.context
- the action's context.
ValidationException
- if an error happens when validating the action.public static void validate(Object object, String context, ValidatorContext validatorContext) throws ValidationException
object
- the action to validate.context
- the action's context.validatorContext
-
ValidationException
- if an error happens when validating the action.protected static String buildValidatorKey(Class clazz, String context)
clazz
- the action.context
- the action's context.
|
XWork Project Page | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |