org.springframework.validation
Class MapBindingResult
java.lang.Object
  
org.springframework.validation.AbstractBindingResult
      
org.springframework.validation.MapBindingResult
- All Implemented Interfaces: 
 - Serializable, BindingResult, Errors
 
public class MapBindingResult
- extends AbstractBindingResult
- implements Serializable
  
Map-based implementation of the BindingResult interface,
 supporting registration and evaluation of binding errors on
 Map attributes.
 
Can be used as errors holder for custom binding onto a
 Map, for example when invoking a Validator for a Map object.
- Since:
 
  - 2.0
 
- Author:
 
  - Juergen Hoeller
 
- See Also:
 Map, 
Serialized Form
 
 
 
 
 
| Methods inherited from class org.springframework.validation.AbstractBindingResult | 
addAllErrors, addError, canonicalFieldName, doSetNestedPath, equals, fixedField, formatFieldValue, getAllErrors, getErrorCount, getFieldError, getFieldError, getFieldErrorCount, getFieldErrorCount, getFieldErrors, getFieldErrors, getFieldType, getFieldValue, getGlobalError, getGlobalErrorCount, getGlobalErrors, getMessageCodesResolver, getModel, getNestedPath, getObjectName, getPropertyEditorRegistry, getSuppressedFields, hasErrors, hasFieldErrors, hasFieldErrors, hasGlobalErrors, hashCode, isMatchingFieldError, popNestedPath, pushNestedPath, recordSuppressedField, reject, reject, reject, rejectValue, rejectValue, rejectValue, resolveMessageCodes, resolveMessageCodes, setMessageCodesResolver, setNestedPath, toString | 
 
 
MapBindingResult
public MapBindingResult(Map target,
                        String objectName)
- Create a new MapBindingResult instance.
- Parameters:
 target - the target Map to bind ontoobjectName - the name of the target object
 
getTargetMap
public final Map getTargetMap()
 
 
getTarget
public final Object getTarget()
- Description copied from class: 
AbstractBindingResult 
- Return the wrapped target object.
- Specified by:
 getTarget in interface BindingResult- Specified by:
 getTarget in class AbstractBindingResult
 
 
 
getActualFieldValue
protected Object getActualFieldValue(String field)
- Description copied from class: 
AbstractBindingResult 
- Extract the actual field value for the given field.
- Specified by:
 getActualFieldValue in class AbstractBindingResult
 
- Parameters:
 field - the field to check
- Returns:
 - the current value of the field
 
 
 
Copyright © 2002-2008 The Spring Framework.