@Override
  public String execute() throws Exception {
    System.out.println(ServletInfoDumper.RequestToString(mRequest, "\n"));

    //
    return SUCCESS;
  }
  public String edit() throws Exception {
    System.out.println(ServletInfoDumper.RequestToString(mRequest, "\n"));
    String strMapId = mRequest.getParameter("mapId");
    String strStoreDbName = (String) ActionContext.getContext().getSession().get("stroreDbName");
    if (strMapId != null && strStoreDbName != null) {
      int nMapId = Integer.parseInt(strMapId);

      mStoreMapInfo = mManager.getStoreMapById(this, strStoreDbName, nMapId);
      return SUCCESS;
    }
    return INPUT;
  }