@RequestMapping(value = "edit.htm", method = RequestMethod.GET)
  public ModelAndView initEdit(@RequestParam("tumbonId") String tumbonId) {
    logger.info(" Start  ");
    ModelAndView mav = new ModelAndView();
    BuckWaRequest request = new BuckWaRequest();
    request.put("tumbonId", tumbonId);
    BuckWaResponse response = tumbonService.getById(request);
    if (response.getStatus() == BuckWaConstants.SUCCESS) {
      Tumbon tumbon = (Tumbon) response.getResObj("tumbon");

      mav.addObject("tumbon", tumbon);
    } else {
      logger.info("  Fail !!!! :" + response.getErrorCode() + " : " + response.getErrorDesc());
      mav.addObject("errorCode", response.getErrorCode());
    }
    mav.setViewName("tumbonEdit");

    return mav;
  }