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.bind Provides web-specific data binding functionality, including a utility class for easy invocation of binding and validation. 
org.springframework.web.servlet.mvc Standard controller implementations for the 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 given object and Errors instance.
 

Uses of Validator in org.springframework.web.bind
 

Methods in org.springframework.web.bind with parameters of type Validator
static BindException BindUtils.bindAndValidate(ServletRequest request, Object object, String objectName, Validator validator)
          Deprecated. Bind the parameters from the given request to the given object, invoking the given validator.
static BindException BindUtils.bindAndValidate(ServletRequest request, Object object, String objectName, Validator validator, BindInitializer initializer)
          Deprecated. Bind the parameters from the given request to the given object, invoking the given validator, and allowing for optional custom editors set in an bind initializer.
 

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 (c) 2002-2007 The Spring Framework Project.