/* 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);
}