Package org.gatein.pc.portlet.container.managed

Examples of org.gatein.pc.portlet.container.managed.ManagedPortletApplication


      {
         // Use an alias
         PortletApplicationRegistry registry = (PortletApplicationRegistry)getPortletContext().getAttribute(WebBootstrap.BEAN_PREFIX + "PortletApplicationDeployer");

         //
         ManagedPortletApplication application = registry.getManagedPortletApplication(applicationId);
         ManagedObject managedObject = application;

         //
         String containerId = req.getParameter("container");
         if (containerId != null)
         {
            managedObject = application.getManagedPortletContainer(containerId);
         }
         else
         {
            String filterId = req.getParameter("filter");
            if (filterId != null)
            {
               managedObject = application.getManagedPortletFilter(filterId);
            }
         }

         //
         final ManagedObject tmp = managedObject;
View Full Code Here

TOP

Related Classes of org.gatein.pc.portlet.container.managed.ManagedPortletApplication

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.