Package org.jboss.portal.portlet.controller.state

Examples of org.jboss.portal.portlet.controller.state.StateControllerContext


   ControllerResponse processResponse(
      PortletControllerContext context,
      PortletRequest portletRequest,
      PortletInvocationResponse response) throws PortletInvokerException
   {
      StateControllerContext stateContext = context.getStateControllerContext();

      // The page navigational state we will operate on during the request
      // Either we have nothing in the request so we create a new one
      // Or we have one but we copy it as we should not modify the input state provided
      PortletPageNavigationalState pageNavigationalState = portletRequest.getPageNavigationalState();
      if (pageNavigationalState == null)
      {
         pageNavigationalState = stateContext.createPortletPageNavigationalState(true);
      }
      else
      {
         pageNavigationalState = stateContext.clonePortletPageNavigationalState(pageNavigationalState, true);
      }

      //
      ResponseProperties requestProperties = new ResponseProperties();
View Full Code Here

TOP

Related Classes of org.jboss.portal.portlet.controller.state.StateControllerContext

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.