Uses of Interface
org.apache.hc.core5.http.io.HttpFilterHandler
-
Packages that use HttpFilterHandler Package Description org.apache.hc.core5.http.impl.bootstrap HTTP/1.1 requester and server bootstrap.org.apache.hc.core5.http.io.support Support classes for the classic (blocking) I/O model. -
-
Uses of HttpFilterHandler in org.apache.hc.core5.http.impl.bootstrap
Fields in org.apache.hc.core5.http.impl.bootstrap with type parameters of type HttpFilterHandler Modifier and Type Field Description private java.util.List<FilterEntry<HttpFilterHandler>>ServerBootstrap. filtersMethods in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpFilterHandler Modifier and Type Method Description ServerBootstrapServerBootstrap. addFilterAfter(java.lang.String existing, java.lang.String name, HttpFilterHandler filterHandler)Adds the filter after the filter with the given name.ServerBootstrapServerBootstrap. addFilterBefore(java.lang.String existing, java.lang.String name, HttpFilterHandler filterHandler)Adds the filter before the filter with the given name.ServerBootstrapServerBootstrap. addFilterFirst(java.lang.String name, HttpFilterHandler filterHandler)Add an filter to the head of the processing list.ServerBootstrapServerBootstrap. addFilterLast(java.lang.String name, HttpFilterHandler filterHandler)Add an filter to the tail of the processing list.ServerBootstrapServerBootstrap. replaceFilter(java.lang.String existing, HttpFilterHandler filterHandler)Replace an existing filter with the given name with new filter. -
Uses of HttpFilterHandler in org.apache.hc.core5.http.io.support
Classes in org.apache.hc.core5.http.io.support that implement HttpFilterHandler Modifier and Type Class Description classAbstractHttpServerAuthFilter<T>Abstract HTTP request filter that implements standard HTTP authentication handshake.classHttpServerExpectationFilterHttpServerExpectationFilter add support for the Expect-Continue handshake to the request processing pipeline.classTerminalServerFilterHttpFilterHandlerimplementation represents a terminal handler in a request processing pipeline that makes use ofHttpRequestMapperto dispatch the request to a particularHttpRequestHandler.Fields in org.apache.hc.core5.http.io.support declared as HttpFilterHandler Modifier and Type Field Description private HttpFilterHandlerHttpServerFilterChainElement. handlerConstructors in org.apache.hc.core5.http.io.support with parameters of type HttpFilterHandler Constructor Description HttpServerFilterChainElement(HttpFilterHandler handler, HttpServerFilterChainElement next)
-