Uses of Interface
org.apache.tapestry.web.WebRequest

Packages that use WebRequest
org.apache.tapestry.asset Implementations of IAsset, as well as the org.apache.tapestry.asset.AssetExternalizer, used to handle private assets. 
org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.engine.state Management of application state objects (what, in Tapestry 3.0, were the Visit and Global objects). 
org.apache.tapestry.error   
org.apache.tapestry.record Abstract and simple (memory-based) implementations of IPageRecorder
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl   
org.apache.tapestry.web Interfaces that provide an abtraction between Tapestry and the underlying Servlet APIs. 
 

Uses of WebRequest in org.apache.tapestry.asset
 

Methods in org.apache.tapestry.asset with parameters of type WebRequest
 void AssetService.setRequest(WebRequest request)
           
 

Uses of WebRequest in org.apache.tapestry.engine
 

Fields in org.apache.tapestry.engine declared as WebRequest
protected  WebRequest DirectService._request
           
 

Methods in org.apache.tapestry.engine with parameters of type WebRequest
 IMonitor DefaultMonitorFactory.createMonitor(WebRequest request)
          Deprecated. Returns a shared instance of NullMonitor.
 void DirectService.setRequest(WebRequest request)
           
static boolean EngineUtils.needAbsoluteURL(java.lang.String scheme, java.lang.String server, int port, WebRequest request)
          Invoked by #getURL(String, String, int, String, boolean) to see if an absolute URL is needed (because a specific scheme, server or port was indicated that does not match the incoming request).
 void AbstractEngine.service(WebRequest request, WebResponse response)
          Delegate method for the servlet.
 void ActionService.setRequest(WebRequest request)
          Deprecated.  
 IMonitor IMonitorFactory.createMonitor(WebRequest request)
          Deprecated. Create a new IMonitorinstance.
 

Constructors in org.apache.tapestry.engine with parameters of type WebRequest
EngineServiceLink(IRequestCycle cycle, java.lang.String servletPath, java.lang.String encoding, org.apache.commons.codec.net.URLCodec codec, WebRequest request, java.util.Map parameters, boolean stateful)
          Creates a new EngineServiceLink.
 

Uses of WebRequest in org.apache.tapestry.engine.state
 

Methods in org.apache.tapestry.engine.state with parameters of type WebRequest
 void SessionScopeManager.setRequest(WebRequest request)
           
 

Uses of WebRequest in org.apache.tapestry.error
 

Methods in org.apache.tapestry.error with parameters of type WebRequest
 void RequestExceptionReporterImpl.setRequest(WebRequest request)
           
 

Uses of WebRequest in org.apache.tapestry.record
 

Methods in org.apache.tapestry.record with parameters of type WebRequest
 void ClientPropertyPersistenceStrategy.setRequest(WebRequest request)
           
 void SessionPropertyPersistenceStrategy.setRequest(WebRequest request)
           
 

Uses of WebRequest in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services that return WebRequest
 WebRequest Infrastructure.getRequest()
          Returns the request for the current request cycle.
 WebRequest RequestGlobals.getWebRequest()
           
 

Methods in org.apache.tapestry.services with parameters of type WebRequest
 void WebRequestServicer.service(WebRequest request, WebResponse response)
           
 void WebRequestServicerFilter.service(WebRequest request, WebResponse response, WebRequestServicer servicer)
           
 void RequestGlobals.store(WebRequest request, WebResponse response)
           
 

Uses of WebRequest in org.apache.tapestry.services.impl
 

Methods in org.apache.tapestry.services.impl that return WebRequest
 WebRequest InfrastructureImpl.getRequest()
           
 WebRequest RequestGlobalsImpl.getWebRequest()
           
 

Methods in org.apache.tapestry.services.impl with parameters of type WebRequest
 void AbsoluteURLBuilderImpl.setRequest(WebRequest request)
           
 void InvokeEngineTerminator.service(WebRequest request, WebResponse response)
           
 void RequestLocaleManagerImpl.setRequest(WebRequest request)
           
 void LinkFactoryImpl.setRequest(WebRequest request)
           
 void RequestGlobalsImpl.store(WebRequest request, WebResponse response)
           
 void DisableCachingFilter.service(WebRequest request, WebResponse response, WebRequestServicer servicer)
           
 

Uses of WebRequest in org.apache.tapestry.web
 

Classes in org.apache.tapestry.web that implement WebRequest
 class ServletWebRequest
          Adapter from HttpServletRequest to WebRequest.