public ActionForward getAllBlackListed(
     ActionMapping mapping,
     ActionForm form,
     HttpServletRequest request,
     HttpServletResponse response)
     throws OperationException, ApplicationException {
   ActionForward fwd = init(mapping, form, request, response);
   if (fwd != null) return fwd;
   Properties ctx = TmkJSPEnv.getCtx(request);
   ArrayList<BlackListedBean> blackListedList = BlackListedManager.getAllBlackListed(ctx);
   request.getSession().setAttribute(Constants.BLACKLISTED_LISTS, blackListedList);
   return mapping.findForward(GET_ALL_BLACKLISTED);
 }