public String projectRemove() throws Exception {
   String id = servletRequest.getParameter("id");
   try {
     projectService.remove(id);
   } catch (ServiceException e) {
     LOGGER.error(e.getMessage());
   }
   return SUCCESS;
 }