Uses of Interface
org.apache.hc.core5.http.HttpResponseInterceptor
Packages that use HttpResponseInterceptor
Package
Description
Core HTTP protocol interceptors.
HTTP/2 protocol interceptors.
-
Uses of HttpResponseInterceptor in org.apache.hc.core5.http.protocol
Subinterfaces of HttpResponseInterceptor in org.apache.hc.core5.http.protocolModifier and TypeInterfaceDescriptioninterfaceHTTP protocol processor is a collection of 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 HttpResponseInterceptorModifier and TypeClassDescriptionfinal classDefault immutable implementation ofHttpProcessor.classResponseConnControl is responsible for addingConnectionheader to the outgoing responses, which is essential for managing persistence ofHTTP/1.0connections.classResponseContent is the most important interceptor for outgoing responses.classResponseDate is responsible for addingDateheader to the outgoing responses.classResponseServer is responsible for addingServerheader.Methods in org.apache.hc.core5.http.protocol with parameters of type HttpResponseInterceptorModifier and TypeMethodDescriptionHttpProcessorBuilder.add(HttpResponseInterceptor e) HttpProcessorBuilder.addAll(HttpResponseInterceptor... e) HttpProcessorBuilder.addAllFirst(HttpResponseInterceptor... e) HttpProcessorBuilder.addAllLast(HttpResponseInterceptor... e) HttpProcessorBuilder.addFirst(HttpResponseInterceptor e) HttpProcessorBuilder.addLast(HttpResponseInterceptor e) Constructors in org.apache.hc.core5.http.protocol with parameters of type HttpResponseInterceptorModifierConstructorDescriptionDefaultHttpProcessor(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 HttpResponseInterceptorModifier and TypeClassDescriptionclassHTTP/2 compatible extension ofResponseConnControl.classHTTP/2 compatible extension ofResponseContent.