Package org.jboss.portal.portlet.invocation

Examples of org.jboss.portal.portlet.invocation.ActionInvocation


         {
            publicNS = pageNavigationalState.getPortletPublicNavigationalState(portletRequest.getWindowId());
         }

         PortletInvocationContext portletInvocationContext = context.createPortletInvocationContext(portletRequest.getWindowId(), pageNavigationalState);
         ActionInvocation actionInvocation = new ActionInvocation(portletInvocationContext);

         //
         actionInvocation.setMode(mode);
         actionInvocation.setWindowState(windowState);
         actionInvocation.setNavigationalState(portletActionRequest.getWindowNavigationalState().getPortletNavigationalState());
         actionInvocation.setPublicNavigationalState(publicNS);
         actionInvocation.setInteractionState(portletActionRequest.getInteractionState());
         actionInvocation.setForm(portletActionRequest.getBodyParameters() != null ? ParameterMap.clone(portletActionRequest.getBodyParameters()) : null);

         //
         return context.invoke(actionInvocation);
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.portal.portlet.invocation.ActionInvocation

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.