Package si.unimb.cot.mgbl.gamemgmt.formbeans

Examples of si.unimb.cot.mgbl.gamemgmt.formbeans.ListTemplatesForm


  @Override
  public ActionForward defaultMethod(ActionMapping am, ActionForm af, HttpServletRequest req, HttpServletResponse res) {
   
    super.defaultMethod(am, af, req, res);
   
    ListTemplatesForm form=(ListTemplatesForm) af;

    form.setMyUserId(webUser.getId());

    this.session = HibernateSessions.getSessionFactory().openSession();
    try {
      ArrayList<GameTemplate> ret=GameTemplateDao.getAllGameTemplates(session);
      form.setGameTemplates(ret);
    } finally {
      this.session.close();
    }

    return am.findForward("list");
View Full Code Here

TOP

Related Classes of si.unimb.cot.mgbl.gamemgmt.formbeans.ListTemplatesForm

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.