Package org.jboss.portletbridge.context

Examples of org.jboss.portletbridge.context.ServletApplicationScopeSessionMap


         context.setPropertyResolved(true);
         if (mAppScopeSessionMap == null) {
            Object request = extCtx.getRequest();
            Object portletLifecycleAttr = extCtx.getRequestMap().get(Bridge.PORTLET_LIFECYCLE_PHASE);
            if (null == portletLifecycleAttr) {
               mAppScopeSessionMap = new ServletApplicationScopeSessionMap((HttpServletRequest) request);
            } else if (portletLifecycleAttr instanceof Bridge.PortletPhase) {
               mAppScopeSessionMap = new PortletApplicationScopeSessionMap((PortletRequest) request);
            }
         }
         return mAppScopeSessionMap;
View Full Code Here

TOP

Related Classes of org.jboss.portletbridge.context.ServletApplicationScopeSessionMap

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.