Package org.xdams.page.multiarchive.command

Examples of org.xdams.page.multiarchive.command.MultiTitlePageCommand


  }

  @RequestMapping(value = "/search/{archive}/title-multiarchive")
  public String titlePage(@ModelAttribute("userBean") UserBean userBean, @ModelAttribute("confBean") ConfBean confBean, @PathVariable String archive, ModelMap modelMap, HttpServletRequest request, HttpServletResponse response) throws Exception {
    common(confBean, userBean, archive, modelMap, request, response);
    MultiTitlePageCommand multiTitlePageCommand = new MultiTitlePageCommand(request.getParameterMap(), modelMap);
    multiTitlePageCommand.execute();
    return "multiArchive/search/title-multiarchive";
  }
View Full Code Here

TOP

Related Classes of org.xdams.page.multiarchive.command.MultiTitlePageCommand

Copyright © 2018 www.massapicom. 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.