}
@SuppressWarnings("unchecked")
private ModelAndView valorizzaModelAndView(HttpServletRequest req, String ext, byte[] bytes) throws Exception, IOException {
Map params = new FastMap();
params.put(Constant.ID_CENTRO, WebUtils.getIdCentro(req));
params.put(Constant.TEMP, WebUtils.getTempDir(req));
params.put(Constant.EXT, ext);
params.put(Constant.ID, req.getSession().getId());
List utentiFile = bindService.getUtenti(params, bytes);
int numeroUtenti = utentiFile.size();
utentiFile = null;
return utentiFile.size() > 0 ? uploadAndBindSuccess(numeroUtenti) : unSuccessBind(req);
}