Package org.xdams.page.command

Examples of org.xdams.page.command.HierBrowserPageCommand.execute()


  @RequestMapping(value = "/hier/{archive}/{pageName}", method = RequestMethod.GET)
  public String hierPage(@ModelAttribute("userBean") UserBean userBean, @ModelAttribute("confBean") ConfBean confBean, @PathVariable String archive, ModelMap modelMap, @PathVariable String pageName, HttpServletRequest request, HttpServletResponse response) throws Exception {
    modelMap.put("pageName", pageName);
    common(confBean, userBean, archive, modelMap, request, response);
    HierBrowserPageCommand hierBrowserPageCommand = new HierBrowserPageCommand(request.getParameterMap(), modelMap);
    hierBrowserPageCommand.execute();
    System.out.println("xDamsController.queryPage() pageName: " + pageName);
    // System.out.println("xDamsController.queryPage() workFlowBean: " + workFlowBean);
    return "hier/" + pageName;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.