Package org.infoglue.deliver.portal.services

Examples of org.infoglue.deliver.portal.services.PortletWindowRegistryService


        {
            log.debug("actionwindow found [" + portletWindowId + "]");
        }

        // Locate portlet-window instance
        PortletWindowRegistryService windowService = (PortletWindowRegistryService) ServiceManager.getService(PortletWindowRegistryService.class);
        PortletWindow actionWindow = windowService.getPortletWindow(portletWindowId);

        if (actionWindow == null)
        {
            log.error("PortletWindow action requested but not found: " + portletWindowId);
            return false;
View Full Code Here


        try
        {
          if(portletID == null || portletID.equals(""))
            throw new NameNotFoundException("Undefined or empty portletID not allowed");
         
            PortletWindowRegistryService windowService = (PortletWindowRegistryService) ServiceManager.getService(PortletWindowRegistryService.class);
            PortletWindow renderWindow = windowService.createPortletWindow(windowID, portletID);
            logger.info("Portlet window of " + portletID + "," + windowID + ": " + renderWindow);
           
        //this.deliveryContext.addUsedContent("selectiveCacheUpdateNonApplicable");
        this.deliveryContext.addUsedContent("portlet_" + portletID);
        logger.info("Adding portlet_" + portletID);
View Full Code Here

TOP

Related Classes of org.infoglue.deliver.portal.services.PortletWindowRegistryService

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.