Uses of Class
org.apache.wicket.settings.IRequestCycleSettings.RenderStrategy

Packages that use IRequestCycleSettings.RenderStrategy
org.apache.wicket.settings   
 

Uses of IRequestCycleSettings.RenderStrategy in org.apache.wicket.settings
 

Fields in org.apache.wicket.settings declared as IRequestCycleSettings.RenderStrategy
static IRequestCycleSettings.RenderStrategy IRequestCycleSettings.ONE_PASS_RENDER
          All logical parts of a request (the action and render part) are handled within the same request.
static IRequestCycleSettings.RenderStrategy IRequestCycleSettings.REDIRECT_TO_BUFFER
          All logical parts of a request (the action and render part) are handled within the same request, but instead of streaming the render result to the browser directly, the result is cached on the server.
static IRequestCycleSettings.RenderStrategy IRequestCycleSettings.REDIRECT_TO_RENDER
          The render part of a request (opposed to the 'action part' which is either the construction of a bookmarkable page or the execution of a IRequestListener handler) is handled by a separate request by issuing a redirect request to the browser.
 

Methods in org.apache.wicket.settings that return IRequestCycleSettings.RenderStrategy
 IRequestCycleSettings.RenderStrategy Settings.getRenderStrategy()
           
 IRequestCycleSettings.RenderStrategy IRequestCycleSettings.getRenderStrategy()
          Gets in what way the render part of a request is handled.
 

Methods in org.apache.wicket.settings with parameters of type IRequestCycleSettings.RenderStrategy
 void Settings.setRenderStrategy(IRequestCycleSettings.RenderStrategy renderStrategy)
           
 void IRequestCycleSettings.setRenderStrategy(IRequestCycleSettings.RenderStrategy renderStrategy)
          Sets in what way the render part of a request is handled.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.