| com.opensymphony.xwork.validator.ActionValidatorManager
All known Subclasses: com.opensymphony.xwork.validator.DefaultActionValidatorManager,
ActionValidatorManager | public interface ActionValidatorManager (Code) | | ActionValidatorManager
author: Rainer Hermanns version: $Id: ActionValidatorManager.java 1281 2006-12-25 04:23:44Z tm_jee $ |
getValidators | List getValidators(Class clazz, String context)(Code) | | Returns a list of validators for the given class and context. This is the primary
lookup method for validators.
Parameters: clazz - the class to lookup. Parameters: context - the context of the action class - can be null. a list of all validators for the given class and context. |
validate | void validate(Object object, String context) throws ValidationException(Code) | | Validates the given object using action and its context.
Parameters: object - the action to validate. Parameters: context - the action's context. throws: ValidationException - if an error happens when validating the action. |
validate | void validate(Object object, String context, ValidatorContext validatorContext) throws ValidationException(Code) | | Validates an action give its context and a validation context.
Parameters: object - the action to validate. Parameters: context - the action's context. Parameters: validatorContext - throws: ValidationException - if an error happens when validating the action. |
|
|