Package org.strecks.page

Examples of org.strecks.page.PageForward


public class PageNavigationHandler implements NavigationHandler<Page>
{

  public ViewAdapter getActionForward(ActionContext actionContext, Page pageClass)
  {
    return new ActionForwardViewAdapter(new PageForward(pageClass));
  }
View Full Code Here


public class PageNavigationHandler implements NavigationHandler<Page>
{

  public ViewAdapter getActionForward(ActionContext actionContext, Page navigationResult)
  {
    PageForward pageClassForward = new PageForward(navigationResult);
    navigationResult.setHttpServletResponse(actionContext.getResponse());
    actionContext.getRequest().setAttribute(InfrastructureKeys.PAGE_BEAN, navigationResult);
    return new ActionForwardViewAdapter(pageClassForward);
  }
View Full Code Here

TOP

Related Classes of org.strecks.page.PageForward

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.