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);
}