Uses of Interface
org.apache.axis2.transport.http.server.HttpRequestHandler

Packages that use HttpRequestHandler
org.apache.axis2.transport.http   
org.apache.axis2.transport.http.server   
 

Uses of HttpRequestHandler in org.apache.axis2.transport.http
 

Classes in org.apache.axis2.transport.http that implement HttpRequestHandler
 class HTTPWorker
           
 

Uses of HttpRequestHandler in org.apache.axis2.transport.http.server
 

Classes in org.apache.axis2.transport.http.server that implement HttpRequestHandler
 class AuthRequestHandler
          This request handler guards access to the http server when used in a request handler chain.
 class HttpRequestHandlerChain
          Maintains a chain of HttpRequestHandlers where new request-handlers can be prepended/appended.
 class HttpServiceHandler
          This request handler provides service interface similar to that of Servlet API.
 class ProxyAuthRequestHandler
          This request handler guards access to a proxy when used in a request handler chain.
 

Methods in org.apache.axis2.transport.http.server that return HttpRequestHandler
 HttpRequestHandler SimpleHttpServer.getRequestHandler()
          Returns the currently used HttpRequestHandler by this SimpleHttpServer
 

Methods in org.apache.axis2.transport.http.server with parameters of type HttpRequestHandler
 void HttpRequestHandlerChain.appendHandler(HttpRequestHandler handler)
           
 void HttpRequestHandlerChain.prependHandler(HttpRequestHandler handler)
           
 void SimpleHttpServer.setRequestHandler(HttpRequestHandler rh)
          Sets the HttpRequestHandler to be used for this SimpleHttpServer.
 

Constructors in org.apache.axis2.transport.http.server with parameters of type HttpRequestHandler
SimpleConnectionThread(String name, SimpleHttpServerConnection conn, SimpleConnSet connpool, HttpRequestHandler handler)