Package org.apache.pluto.spi.optional

Examples of org.apache.pluto.spi.optional.PortletEnvironmentService


        if (portletSession == null) {
            if (LOG.isDebugEnabled()) {
                LOG.debug("Creating new portlet session...");
            }
            final OptionalContainerServices optionalContainerServices = container.getOptionalContainerServices();
            final PortletEnvironmentService portletEnvironmentService = optionalContainerServices.getPortletEnvironmentService();
           
            portletSession = portletEnvironmentService.createPortletSession(container,
                                                                            getHttpServletRequest(),
                                                                            portletContext,
                                                                            httpSession,
                                                                            internalPortletWindow);
        }
View Full Code Here

TOP

Related Classes of org.apache.pluto.spi.optional.PortletEnvironmentService

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.