Uses of Interface
org.apache.hc.core5.http.HttpResponseInterceptor
-
Packages that use HttpResponseInterceptor Package Description org.apache.hc.core5.http.protocol Core HTTP protocol interceptors.org.apache.hc.core5.http2.protocol HTTP/2 protocol interceptors. -
-
Uses of HttpResponseInterceptor in org.apache.hc.core5.http.protocol
Subinterfaces of HttpResponseInterceptor in org.apache.hc.core5.http.protocol Modifier and Type Interface Description interfaceHttpProcessorCollects protocol interceptors that implements the 'Chain of Responsibility' pattern, where each individual protocol interceptor is expected to work on a particular aspect of the HTTP protocol the interceptor is responsible for.Classes in org.apache.hc.core5.http.protocol that implement HttpResponseInterceptor Modifier and Type Class Description classDefaultHttpProcessorDefault immutable implementation ofHttpProcessor.classResponseConformanceThis response interceptor is responsible for making the protocol conformance checks of outgoing response messages.classResponseConnControlThis response interceptor is responsible for addingConnectionheader to outgoing responses, which is essential for managing persistence ofHTTP/1.0connections.classResponseContentThis response interceptor is responsible for delimiting the message content by addingContent-LengthorTransfer-Contentheaders based on the properties of the enclosed entity and the protocol version.classResponseDateThis response interceptor is responsible for addingDateheader to outgoing response messages.classResponseServerThis response interceptor is responsible for addingServerheader.Fields in org.apache.hc.core5.http.protocol declared as HttpResponseInterceptor Modifier and Type Field Description private HttpResponseInterceptor[]DefaultHttpProcessor. responseInterceptorsFields in org.apache.hc.core5.http.protocol with type parameters of type HttpResponseInterceptor Modifier and Type Field Description private ChainBuilder<HttpResponseInterceptor>HttpProcessorBuilder. responseChainBuilderMethods in org.apache.hc.core5.http.protocol that return types with arguments of type HttpResponseInterceptor Modifier and Type Method Description private ChainBuilder<HttpResponseInterceptor>HttpProcessorBuilder. getResponseChainBuilder()Methods in org.apache.hc.core5.http.protocol with parameters of type HttpResponseInterceptor Modifier and Type Method Description HttpProcessorBuilderHttpProcessorBuilder. add(HttpResponseInterceptor e)HttpProcessorBuilderHttpProcessorBuilder. addAll(HttpResponseInterceptor... e)HttpProcessorBuilderHttpProcessorBuilder. addAllFirst(HttpResponseInterceptor... e)HttpProcessorBuilderHttpProcessorBuilder. addAllLast(HttpResponseInterceptor... e)HttpProcessorBuilderHttpProcessorBuilder. addFirst(HttpResponseInterceptor e)HttpProcessorBuilderHttpProcessorBuilder. addLast(HttpResponseInterceptor e)Constructors in org.apache.hc.core5.http.protocol with parameters of type HttpResponseInterceptor Constructor Description DefaultHttpProcessor(HttpRequestInterceptor[] requestInterceptors, HttpResponseInterceptor[] responseInterceptors)DefaultHttpProcessor(HttpResponseInterceptor... responseInterceptors) -
Uses of HttpResponseInterceptor in org.apache.hc.core5.http2.protocol
Classes in org.apache.hc.core5.http2.protocol that implement HttpResponseInterceptor Modifier and Type Class Description classH2ResponseConformanceThis response interceptor is responsible for making the protocol conformance checks of incoming or outgoing HTTP/2 response messages.classH2ResponseConnControlHTTP/2 compatible extension ofResponseConnControl.classH2ResponseContentHTTP/2 compatible extension ofResponseContent.
-