Uses of Interface
org.springframework.validation.Validator

Packages that use Validator
org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers. 
org.springframework.web.portlet.mvc Standard controller implementations for the portlet MVC framework that comes with Spring. 
org.springframework.web.servlet.mvc Standard controller implementations for the servlet MVC framework that comes with Spring. 
org.springframework.web.servlet.mvc.multiaction Package allowing MVC Controller implementations to handle requests at method rather than class level. 
 

Uses of Validator in org.springframework.validation
 

Methods in org.springframework.validation with parameters of type Validator
static void ValidationUtils.invokeValidator(Validator validator, Object obj, Errors errors)
          Invoke the given Validator for the supplied object and Errors instance.
 

Uses of Validator in org.springframework.web.portlet.mvc
 

Methods in org.springframework.web.portlet.mvc that return Validator
 Validator BaseCommandController.getValidator()
           
 Validator[] BaseCommandController.getValidators()
          Return the Validators for this controller.
 

Methods in org.springframework.web.portlet.mvc with parameters of type Validator
 void BaseCommandController.setValidator(Validator validator)
          Set the primary Validator for this controller.
 void BaseCommandController.setValidators(Validator[] validators)
          Set the Validators for this controller.
 

Uses of Validator in org.springframework.web.servlet.mvc
 

Methods in org.springframework.web.servlet.mvc that return Validator
 Validator BaseCommandController.getValidator()
          Return the primary Validator for this controller.
 Validator[] BaseCommandController.getValidators()
          Return the Validators for this controller.
 

Methods in org.springframework.web.servlet.mvc with parameters of type Validator
 void BaseCommandController.setValidator(Validator validator)
          Set the primary Validator for this controller.
 void BaseCommandController.setValidators(Validator[] validators)
          Set the Validators for this controller.
 

Uses of Validator in org.springframework.web.servlet.mvc.multiaction
 

Methods in org.springframework.web.servlet.mvc.multiaction that return Validator
 Validator[] MultiActionController.getValidators()
          Return the Validators for this controller.
 

Methods in org.springframework.web.servlet.mvc.multiaction with parameters of type Validator
 void MultiActionController.setValidators(Validator[] validators)
          Set the Validators for this controller.
 



Copyright © 2002-2008 The Spring Framework.