|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BindingResult | |
---|---|
org.springframework.validation | Provides data binding and validation functionality, for usage in business and/or UI layers. |
Uses of BindingResult in org.springframework.validation |
---|
Classes in org.springframework.validation that implement BindingResult | |
---|---|
class |
AbstractBindingResult
Abstract implementation of the BindingResult interface and
its super-interface Errors . |
class |
AbstractPropertyBindingResult
Abstract base class for BindingResult implementations that work with Spring's PropertyAccessor mechanism. |
class |
BeanPropertyBindingResult
Default implementation of the Errors and BindingResult
interfaces, for the registration and evaluation of binding errors on
JavaBean objects. |
class |
BindException
Thrown when binding errors are considered fatal. |
class |
DirectFieldBindingResult
Special implementation of the Errors and BindingResult interfaces, supporting registration and evaluation of binding errors on value objects. |
class |
MapBindingResult
Map-based implementation of the BindingResult interface, supporting registration and evaluation of binding errors on Map attributes. |
Methods in org.springframework.validation that return BindingResult | |
---|---|
BindingResult |
BindException.getBindingResult()
Return the BindingResult that this BindException wraps. |
BindingResult |
DataBinder.getBindingResult()
Return the BindingResult instance created by this DataBinder. |
static BindingResult |
BindingResultUtils.getBindingResult(Map model,
String name)
Find the BindingResult for the given name in the given model. |
static BindingResult |
BindingResultUtils.getRequiredBindingResult(Map model,
String name)
Find a required BindingResult for the given name in the given model. |
Methods in org.springframework.validation with parameters of type BindingResult | |
---|---|
void |
DefaultBindingErrorProcessor.processMissingFieldError(String missingField,
BindingResult bindingResult)
|
void |
BindingErrorProcessor.processMissingFieldError(String missingField,
BindingResult bindingResult)
Apply the missing field error to the given BindException. |
void |
DefaultBindingErrorProcessor.processPropertyAccessException(PropertyAccessException ex,
BindingResult bindingResult)
|
void |
BindingErrorProcessor.processPropertyAccessException(PropertyAccessException ex,
BindingResult bindingResult)
Translate the given PropertyAccessException to an appropriate
error registered on the given Errors instance. |
Constructors in org.springframework.validation with parameters of type BindingResult | |
---|---|
BindException(BindingResult bindingResult)
Create a new BindException instance for a BindingResult. |
|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |