Examples of ErrorLogForm


Examples of net.naijatek.myalumni.modules.admin.presentation.form.ErrorLogForm

  public ActionForward viewErrorLog(ActionMapping mapping, ActionForm form,
      HttpServletRequest request, HttpServletResponse response)
      throws Exception {
    logger.debug("in viewErrorLog...");

    ErrorLogForm logForm = (ErrorLogForm) form;
    ErrorLogVO logVO = logService.getErrorLog(logForm.getErrorLogId());
    setRequestObject(request, BaseConstants.OBJECT_VO, logVO);
    return mapping.findForward(BaseConstants.FWD_SUCCESS);
  }
View Full Code Here

Examples of net.naijatek.myalumni.modules.admin.presentation.form.ErrorLogForm

 
  public ActionForward deleteErrorLog(ActionMapping mapping, ActionForm form,
      HttpServletRequest request, HttpServletResponse response)
      throws Exception {
    logger.debug("in deleteErrorLog...");
    ErrorLogForm logForm = (ErrorLogForm) form;
    logService.deleteErrorLog(logForm.getErrorLogId());
    listErrorLogsHelper(request);
    return mapping.findForward(BaseConstants.FWD_SUCCESS);
  }
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.