Package org.jasig.portal.portlet.rendering.worker

Examples of org.jasig.portal.portlet.rendering.worker.IPortletFailureExecutionWorker


    try {
      final String output = tracker.getOutput(timeout);
      return output == null ? "" : output;
    } catch (Exception e) {
        final IPortletFailureExecutionWorker failureWorker = this.portletWorkerFactory.createFailureWorker(request, response, portletWindowId, e);
        // TODO publish portlet error event?
        try {
              failureWorker.submit();
            return failureWorker.getOutput(timeout);
            }
            catch (Exception e1) {
                logger.error("Failed to render error portlet for: " + portletWindowId, e1);
                return "Error Portlet Unavailable. Please contact your portal administrators.";
            }
View Full Code Here

TOP

Related Classes of org.jasig.portal.portlet.rendering.worker.IPortletFailureExecutionWorker

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.