Uses of Interface
org.apache.tomcat.core.Request

Uses of Request in org.apache.tomcat.core
 

Classes in org.apache.tomcat.core that implement Request
 class RequestImpl
           
 

Fields in org.apache.tomcat.core declared as Request
protected  Request ResponseImpl.request
           
 

Methods in org.apache.tomcat.core that return Request
 Request Response.getRequest()
           
 Request ResponseImpl.getRequest()
           
 Request HttpServletRequestFacade.getRealRequest()
           
 

Methods in org.apache.tomcat.core with parameters of type Request
 void ServletWrapper.handleRequest(Request req, Response res)
           
 void SessionManager.accessed(Context ctx, Request req, java.lang.String id)
          Will mark the session lastAccess time.
 void Response.setRequest(Request request)
          One-to-one relation with Request
 void ContextManager.service(Request rrequest, Response rresponse)
          Common for all connectors, needs to be shared in order to avoid code duplication
 void ResponseImpl.setRequest(Request request)
           
 void BufferedServletInputStream.setRequest(Request reqA)
           
 int RequestInterceptor.contextMap(Request request)
          Will detect the context path for a request.
 int RequestInterceptor.requestMap(Request request)
          Handle mappings inside a context.
 int RequestInterceptor.authenticate(Request request, Response response)
          Will extract the user ID from the request, and check the password.
 int RequestInterceptor.authorize(Request request, Response response)
          Will check if the user is authorized, by checking if it is in one of the roles defined in security constraints.
 int RequestInterceptor.preService(Request request, Response response)
          Called before service method is invoked.
 int RequestInterceptor.beforeBody(Request request, Response response)
          Called before the first body write, and before sending the headers.
 int RequestInterceptor.beforeCommit(Request request, Response response)
          Called before the output buffer is commited
 int RequestInterceptor.afterBody(Request request, Response response)
          Called after the output stream is closed ( either by servlet or automatically at end of service )
 int RequestInterceptor.postService(Request request, Response response)
          Called after service method ends.
 int BaseInterceptor.requestMap(Request request)
           
 int BaseInterceptor.contextMap(Request rrequest)
           
 int BaseInterceptor.authenticate(Request request, Response response)
           
 int BaseInterceptor.authorize(Request request, Response response)
           
 int BaseInterceptor.preService(Request request, Response response)
           
 int BaseInterceptor.beforeBody(Request rrequest, Response response)
           
 int BaseInterceptor.beforeCommit(Request request, Response response)
           
 int BaseInterceptor.afterBody(Request request, Response response)
           
 int BaseInterceptor.postService(Request request, Response response)
           
 

Constructors in org.apache.tomcat.core with parameters of type Request
BufferedServletInputStream.BufferedServletInputStream(Request reqA)
           
HttpServletRequestFacade.HttpServletRequestFacade(Request request)
           
 



Copyright © 2000 Apache Software Foundation. All Rights Reserved.