Package org.jmanage.core.services

Examples of org.jmanage.core.services.AlertService


        /* applications */
        List applications = ApplicationConfigManager.getApplications();
        request.setAttribute(RequestAttributes.APPLICATIONS, applications);

        /* alerts */
        AlertService alertService = ServiceFactory.getAlertService();
        List alerts = alertService.getConsoleAlerts(context.getServiceContext());
        request.setAttribute("alerts", alerts);

        return mapping.findForward(Forwards.SUCCESS);
    }
View Full Code Here


                                 ActionForm actionForm,
                                 HttpServletRequest request,
                                 HttpServletResponse response)
        throws Exception{

        AlertService alertService = ServiceFactory.getAlertService();
        alertService.removeConsoleAlert(context.getServiceContext(),
                request.getParameter("alertId"));
        return mapping.findForward("success");
    }
View Full Code Here

TOP

Related Classes of org.jmanage.core.services.AlertService

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.