public ModelAndView elimina(HttpServletRequest req, HttpServletResponse res) throws Exception {
long id = ServletRequestUtils.getLongParameter(req, Constant.ID, 0);
if (id == 0) {
throw new UtenteNonTrovatoException();
} else {
String msg = Constant.MSG_ELIMINAZIONE_NO;
if (utentiManager.deleteUtente(id, WebUtils.getIdCentro(req))) {
msg = Constant.MSG_ELIMINAZIONE_OK;
}