Uses of Interface
org.apache.http.protocol.HttpRequestHandler
-
Packages that use HttpRequestHandler Package Description org.apache.http.impl.bootstrap Embedded server and server bootstrap.org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication.org.apache.http.protocol Core HTTP protocol execution framework and HTTP protocol handlers for synchronous, blocking communication. -
-
Uses of HttpRequestHandler in org.apache.http.impl.bootstrap
Fields in org.apache.http.impl.bootstrap with type parameters of type HttpRequestHandler Modifier and Type Field Description private java.util.Map<java.lang.String,HttpRequestHandler>ServerBootstrap. handlerMapMethods in org.apache.http.impl.bootstrap with parameters of type HttpRequestHandler Modifier and Type Method Description ServerBootstrapServerBootstrap. registerHandler(java.lang.String pattern, HttpRequestHandler handler)Registers the givenHttpRequestHandleras a handler for URIs matching the given pattern. -
Uses of HttpRequestHandler in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as HttpRequestHandler Modifier and Type Field Description private HttpRequestHandlerBasicAsyncRequestHandler. handlerprivate HttpRequestHandlerBufferingHttpServiceHandler.RequestHandlerAdaptor. requestHandlerConstructors in org.apache.http.nio.protocol with parameters of type HttpRequestHandler Constructor Description BasicAsyncRequestHandler(HttpRequestHandler handler)RequestHandlerAdaptor(HttpRequestHandler requestHandler) -
Uses of HttpRequestHandler in org.apache.http.protocol
Fields in org.apache.http.protocol with type parameters of type HttpRequestHandler Modifier and Type Field Description private UriPatternMatcher<HttpRequestHandler>HttpRequestHandlerRegistry. matcherDeprecated.private UriPatternMatcher<HttpRequestHandler>UriHttpRequestHandlerMapper. matcherMethods in org.apache.http.protocol that return HttpRequestHandler Modifier and Type Method Description HttpRequestHandlerHttpRequestHandlerMapper. lookup(HttpRequest request)Looks up a handler matching the given request.HttpRequestHandlerHttpRequestHandlerRegistry. lookup(java.lang.String requestURI)Deprecated.HttpRequestHandlerHttpRequestHandlerResolver. lookup(java.lang.String requestURI)Deprecated.Looks up a handler matching the given request URI.HttpRequestHandlerHttpService.HttpRequestHandlerResolverAdapter. lookup(HttpRequest request)Deprecated.HttpRequestHandlerUriHttpRequestHandlerMapper. lookup(HttpRequest request)Looks up a handler matching the given request URI.Methods in org.apache.http.protocol that return types with arguments of type HttpRequestHandler Modifier and Type Method Description java.util.Map<java.lang.String,HttpRequestHandler>HttpRequestHandlerRegistry. getHandlers()Deprecated.Get the handler map.Methods in org.apache.http.protocol with parameters of type HttpRequestHandler Modifier and Type Method Description voidHttpRequestHandlerRegistry. register(java.lang.String pattern, HttpRequestHandler handler)Deprecated.Registers the givenHttpRequestHandleras a handler for URIs matching the given pattern.voidUriHttpRequestHandlerMapper. register(java.lang.String pattern, HttpRequestHandler handler)Registers the givenHttpRequestHandleras a handler for URIs matching the given pattern.Method parameters in org.apache.http.protocol with type arguments of type HttpRequestHandler Modifier and Type Method Description voidHttpRequestHandlerRegistry. setHandlers(java.util.Map<java.lang.String,HttpRequestHandler> map)Deprecated.Sets handlers from the given map.Constructor parameters in org.apache.http.protocol with type arguments of type HttpRequestHandler Constructor Description UriHttpRequestHandlerMapper(UriPatternMatcher<HttpRequestHandler> matcher)
-