org.springframework.validation.AbstractPropertyBindingResult Java Examples
The following examples show how to use
org.springframework.validation.AbstractPropertyBindingResult.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: RelaxedDataBinder.java From canal-1.1.3 with Apache License 2.0 | 5 votes |
@Override protected AbstractPropertyBindingResult createBeanPropertyBindingResult() { return new RelaxedDataBinder.RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(), isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(), getConversionService()); }
Example #2
Source File: UifServletRequestDataBinder.java From rice with Educational Community License v2.0 | 5 votes |
/** * Allows for the setting attributes to use to find the data dictionary data from Kuali * * @see org.springframework.validation.DataBinder#getInternalBindingResult() */ @Override protected AbstractPropertyBindingResult getInternalBindingResult() { if (this.bindingResult == null) { initBeanPropertyAccess(); } return this.bindingResult; }
Example #3
Source File: RelaxedDataBinder.java From canal with Apache License 2.0 | 5 votes |
@Override protected AbstractPropertyBindingResult createBeanPropertyBindingResult() { return new RelaxedDataBinder.RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(), isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(), getConversionService()); }