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

Uses of Response in org.apache.tomcat.core
 

Classes in org.apache.tomcat.core that implement Response
 class ResponseImpl
           
 

Fields in org.apache.tomcat.core declared as Response
protected  Response RequestImpl.response
           
 

Methods in org.apache.tomcat.core that return Response
 Response Request.getResponse()
          One-to-One with Response
 Response RequestImpl.getResponse()
           
 

Methods in org.apache.tomcat.core with parameters of type Response
protected  void Handler.doService(Request req, Response res)
          This is the actual content generator.
 void Handler.service(Request req, Response res)
          Call the service method, and notify all listeners
 void ServletWrapper.service(Request req, Response res)
          Override service to hook reloading - it can be done in a clean interceptor.
protected  void ServletWrapper.doService(Request req, Response res)
           
 void ContextManager.initRequest(Request req, Response resp)
          Prepare the req/resp pair for use in tomcat.
 void ContextManager.service(Request req, Response res)
          This is the entry point in tomcat - the connectors ( or any other component able to generate Request/Response implementations ) will call this method to get it processed.
 int ContextManager.doAuthenticate(Request req, Response res)
          Call all authentication callbacks.
 int ContextManager.doAuthorize(Request req, Response res, java.lang.String[] roles)
          Call all authorization callbacks.
 void ContextManager.handleStatus(Request req, Response res, int code)
          Called for error-codes
 void BufferedServletOutputStream.setResponse(Response response)
           
 int RequestInterceptor.authenticate(Request request, Response response)
          This callback is used to extract and verify the user identity and credentials.
 int RequestInterceptor.authorize(Request request, Response response, java.lang.String[] reqRoles)
          Will check if the current ( authenticated ) user is authorized to access a resource, by checking if it have one of the required roles.
 int RequestInterceptor.preService(Request request, Response response)
          Called before service method is invoked.
 int RequestInterceptor.newSessionRequest(Request request, Response response)
          New Session notification - called when the servlet asks for a new session.
 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.
 void Request.setResponse(Response response)
           
 int BaseInterceptor.authenticate(Request request, Response response)
           
 int BaseInterceptor.authorize(Request request, Response response, java.lang.String[] reqRoles)
           
 int BaseInterceptor.preService(Request request, Response response)
           
 int BaseInterceptor.beforeBody(Request rrequest, Response response)
           
 int BaseInterceptor.newSessionRequest(Request request, Response response)
           
 int BaseInterceptor.beforeCommit(Request request, Response response)
           
 int BaseInterceptor.afterBody(Request request, Response response)
           
 int BaseInterceptor.postService(Request request, Response response)
           
 javax.servlet.http.HttpServletResponse FacadeManager.createHttpServletResponseFacade(Response res)
           
 void RequestImpl.setResponse(Response response)
           
 

Constructors in org.apache.tomcat.core with parameters of type Response
BufferedServletOutputStream.BufferedServletOutputStream(Response resA)
           
 



Copyright © 2000 Apache Software Foundation. All Rights Reserved.