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. filters
Methods in org.apache.hc.core5.http.impl.bootstrap with parameters of type HttpFilterHandler Modifier and Type Method Description ServerBootstrap
ServerBootstrap. addFilterAfter(java.lang.String existing, java.lang.String name, HttpFilterHandler filterHandler)
Adds the filter after the filter with the given name.ServerBootstrap
ServerBootstrap. addFilterBefore(java.lang.String existing, java.lang.String name, HttpFilterHandler filterHandler)
Adds the filter before the filter with the given name.ServerBootstrap
ServerBootstrap. addFilterFirst(java.lang.String name, HttpFilterHandler filterHandler)
Add an filter to the head of the processing list.ServerBootstrap
ServerBootstrap. addFilterLast(java.lang.String name, HttpFilterHandler filterHandler)
Add an filter to the tail of the processing list.ServerBootstrap
ServerBootstrap. 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 class
AbstractHttpServerAuthFilter<T>
Abstract HTTP request filter that implements standard HTTP authentication handshake.class
HttpServerExpectationFilter
HttpServerExpectationFilter add support for the Expect-Continue handshake to the request processing pipeline.class
TerminalServerFilter
HttpFilterHandler
implementation represents a terminal handler in a request processing pipeline that makes use ofHttpRequestMapper
to dispatch the request to a particularHttpRequestHandler
.Fields in org.apache.hc.core5.http.io.support declared as HttpFilterHandler Modifier and Type Field Description private HttpFilterHandler
HttpServerFilterChainElement. handler
Constructors in org.apache.hc.core5.http.io.support with parameters of type HttpFilterHandler Constructor Description HttpServerFilterChainElement(HttpFilterHandler handler, HttpServerFilterChainElement next)
-