Package org.jasig.portal.portlet.session

Examples of org.jasig.portal.portlet.session.ScopingPortletSessionImpl


                                               HttpSession httpSession,
                                               InternalPortletWindow internalPortletWindow) {
       
        final IPortletWindow portletWindow = this.portletWindowRegistry.convertPortletWindow(servletRequest, internalPortletWindow);
        final IPortletEntityId portletEntityId = portletWindow.getPortletEntityId();
        return new ScopingPortletSessionImpl(portletEntityId, portletContext, internalPortletWindow, httpSession);
    }
View Full Code Here


    final HttpServletRequest request = portalRequestUtils.getCurrentPortalRequest();
    final IPortletWindow internalPortletWindow = this.portletWindowRegistry.convertPortletWindow(request, portletWindow);
    final IPortletEntity portletEntity = internalPortletWindow.getPortletEntity();
        final IPortletEntityId portletEntityId = portletEntity.getPortletEntityId();
       
    return new ScopingPortletSessionImpl(portletEntityId, portletContext, portletWindow, session);
  }
View Full Code Here

TOP

Related Classes of org.jasig.portal.portlet.session.ScopingPortletSessionImpl

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.