/** * 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; }
@Override protected AbstractPropertyBindingResult createBeanPropertyBindingResult() { return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(), isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(), getConversionService()); }