Examples of saveSeamConversationId()


Examples of org.jboss.portletbridge.application.PortletWindowState.saveSeamConversationId()

        facesContext.getApplication().getStateManager().saveView(
            facesContext);
        windowState.saveRequest(facesContext);
      } else {
        windowState.reset();
        windowState.saveSeamConversationId(facesContext);
        String redirectViewId = bridgeContext.getRedirectViewId();
        if (null != redirectViewId) {
          windowState.setViewId(redirectViewId);
          // Save redirect request parameters.
          Map<String, String[]> newRequestParameters = bridgeContext
View Full Code Here

Examples of org.jboss.portletbridge.application.PortletWindowState.saveSeamConversationId()

          portletModeName);
      facesContext.getExternalContext().getSessionMap().put(
          VIEWID_HISTORY_PREFIX + portletModeName,
          historyViewId.toString());
      // 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);
View Full Code Here

Examples of org.jboss.portletbridge.application.PortletWindowState.saveSeamConversationId()

      }

    } else if (phaseId.equals(PhaseId.RENDER_RESPONSE)) {
      // save Seam conversation Id.
      if (null != windowState) {
        windowState.saveSeamConversationId(context);
      }

    }

  }
View Full Code Here

Examples of org.jboss.portletbridge.application.PortletWindowState.saveSeamConversationId()

      PortletBridgeContext bridgeContext = (PortletBridgeContext) facesContext
          .getExternalContext().getRequestMap().get(
              PortletBridgeContext.REQUEST_PARAMETER_NAME);
      if (null != bridgeContext) {
        PortletWindowState windowState = bridgeContext.getWindowState();
        windowState.saveSeamConversationId(facesContext);
      }
         _defaultListener.afterResponseComplete(facesContext);
      }

   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.