Package org.jboss.portletbridge.application.PortletStateHolder

Examples of org.jboss.portletbridge.application.PortletStateHolder.WindowIDRetriver


      // writer.println("</div>");
      windowState.saveSeamConversationId(facesContext);
      // PortletSession portletSession = request.getPortletSession(true);
      PortletSession portletSession = (PortletSession) facesContext
          .getExternalContext().getSession(true);
      WindowIDRetriver idRetriver = (WindowIDRetriver) portletSession
          .getAttribute(PortletStateHolder.WINDOW_ID_RETRIVER);

      if (null != idRetriver) {
        windowState.setWindowId(idRetriver.getWindowID());
      }
      PortletBridgePrincipal security = new PortletBridgePrincipal(request,userRoles);
      // TODO - get user roles, defined in the portletbridge.xml ( ???
      // parse it ??? ), and store all values for a
      // "isUserInRole(roleName)" calls
View Full Code Here

TOP

Related Classes of org.jboss.portletbridge.application.PortletStateHolder.WindowIDRetriver

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.