Esempio n. 1
0
 @RequestMapping(value = "{wsId}/{dasId}/remove.html", method = RequestMethod.POST)
 public ModelAndView removeTMA(
     @PathVariable("wsId") Long wsId,
     @PathVariable("dasId") Long dasId,
     @RequestParam(value = "ids", required = false) Long[] ids)
     throws IOException {
   if (ids != null) {
     tinggiMukaAirService.removeByIds(ids);
   }
   return createTMASuccessView(wsId, dasId);
 }