Package ch.bfh.egov.internetapps.form

Examples of ch.bfh.egov.internetapps.form.NaOpNuForm


      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response)
      throws Exception {
    logger.debug("prepare");
    NaOpNuForm nForm = (NaOpNuForm) form;
    if (service.prepare(request, nForm)) {
      return mapping.findForward(Constants.FORM);
    }
    return mapping.findForward(Constants.FAILURE);
  }
View Full Code Here


      HttpServletResponse response)
      throws Exception {
    logger.debug("save");
   
    // Resultate abspeichern
    NaOpNuForm pForm = (NaOpNuForm) form;
   
    service.save(request, pForm);
    return mapping.findForward(Constants.SUCCESS);
  }
View Full Code Here

TOP

Related Classes of ch.bfh.egov.internetapps.form.NaOpNuForm

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.