Package org.fenixedu.academic.domain.accounting.report.events

Examples of org.fenixedu.academic.domain.accounting.report.events.EventReportQueueJob


        return mapping.findForward("createReportRequest");
    }

    public ActionForward cancelReportRequest(final ActionMapping mapping, final ActionForm form,
            final HttpServletRequest request, final HttpServletResponse response) {
        EventReportQueueJob job = readEventReportQueueJob(request);

        try {
            job.cancel();
        } catch (DomainException e) {
            addActionMessage("error", request, e.getKey(), e.getArgs());
            return listReports(mapping, form, request, response);
        }
View Full Code Here


        return listReports(mapping, form, request, response);
    }

    public ActionForward viewRequest(final ActionMapping mapping, final ActionForm form, final HttpServletRequest request,
            final HttpServletResponse response) {
        EventReportQueueJob queueJob = readEventReportQueueJob(request);

        request.setAttribute("queueJob", queueJob);

        return mapping.findForward("viewRequest");
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.report.events.EventReportQueueJob

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.