|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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.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.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. |
|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |