Locale locale, Provider provider) throws Exception {
Map<School , List<FieldError>> executions = new HashMap<School , List<FieldError>>();
for(School school : objs) {
DataBinder dataBinder = new DataBinder(school);
dataBinder.setValidator(validator);
dataBinder.validate();
executions.put(school, dataBinder.getBindingResult().getFieldErrors());
if(!dataBinder.getBindingResult().hasErrors()) {
this.selectiveSchoolStore(school, locale);
}
}