Uses of Interface
org.apache.http.HttpResponseInterceptor
Packages that use HttpResponseInterceptor
Package
Description
Embedded server and server bootstrap.
Embedded non-blocking server and server bootstrap.
Core HTTP protocol execution framework and HTTP protocol handlers
for synchronous, blocking communication.
-
Uses of HttpResponseInterceptor in org.apache.http.impl.bootstrap
Fields in org.apache.http.impl.bootstrap with type parameters of type HttpResponseInterceptorModifier and TypeFieldDescriptionprivate LinkedList<HttpResponseInterceptor> ServerBootstrap.responseFirstprivate LinkedList<HttpResponseInterceptor> ServerBootstrap.responseLastMethods in org.apache.http.impl.bootstrap with parameters of type HttpResponseInterceptorModifier and TypeMethodDescriptionfinal ServerBootstrapServerBootstrap.addInterceptorFirst(HttpResponseInterceptor itcp) Adds this protocol interceptor to the head of the protocol processing list.final ServerBootstrapServerBootstrap.addInterceptorLast(HttpResponseInterceptor itcp) Adds this protocol interceptor to the tail of the protocol processing list. -
Uses of HttpResponseInterceptor in org.apache.http.impl.nio.bootstrap
Fields in org.apache.http.impl.nio.bootstrap with type parameters of type HttpResponseInterceptorModifier and TypeFieldDescriptionprivate LinkedList<HttpResponseInterceptor> ServerBootstrap.responseFirstprivate LinkedList<HttpResponseInterceptor> ServerBootstrap.responseLastMethods in org.apache.http.impl.nio.bootstrap with parameters of type HttpResponseInterceptorModifier and TypeMethodDescriptionfinal ServerBootstrapServerBootstrap.addInterceptorFirst(HttpResponseInterceptor itcp) Adds this protocol interceptor to the head of the protocol processing list.final ServerBootstrapServerBootstrap.addInterceptorLast(HttpResponseInterceptor itcp) Adds this protocol interceptor to the tail of the protocol processing list. -
Uses of HttpResponseInterceptor in org.apache.http.protocol
Subinterfaces of HttpResponseInterceptor in org.apache.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.http.protocol that implement HttpResponseInterceptorModifier and TypeClassDescriptionfinal classDeprecated.(4.3)final classImmutableHttpProcessor.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.Fields in org.apache.http.protocol declared as HttpResponseInterceptorModifier and TypeFieldDescriptionprivate final HttpResponseInterceptor[]ImmutableHttpProcessor.responseInterceptorsFields in org.apache.http.protocol with type parameters of type HttpResponseInterceptorModifier and TypeFieldDescriptionprivate ChainBuilder<HttpResponseInterceptor> HttpProcessorBuilder.responseChainBuilderprotected final List<HttpResponseInterceptor> BasicHttpProcessor.responseInterceptorsDeprecated.Methods in org.apache.http.protocol that return HttpResponseInterceptorModifier and TypeMethodDescriptionBasicHttpProcessor.getResponseInterceptor(int index) Deprecated.HttpResponseInterceptorList.getResponseInterceptor(int index) Deprecated.Obtains a response interceptor from this list.Methods in org.apache.http.protocol that return types with arguments of type HttpResponseInterceptorModifier and TypeMethodDescriptionprivate ChainBuilder<HttpResponseInterceptor> HttpProcessorBuilder.getResponseChainBuilder()Methods in org.apache.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) voidBasicHttpProcessor.addInterceptor(HttpResponseInterceptor interceptor) Deprecated.voidBasicHttpProcessor.addInterceptor(HttpResponseInterceptor interceptor, int index) Deprecated.HttpProcessorBuilder.addLast(HttpResponseInterceptor e) voidBasicHttpProcessor.addResponseInterceptor(HttpResponseInterceptor itcp) Deprecated.voidBasicHttpProcessor.addResponseInterceptor(HttpResponseInterceptor itcp, int index) Deprecated.voidHttpResponseInterceptorList.addResponseInterceptor(HttpResponseInterceptor interceptor) Deprecated.Appends a response interceptor to this list.voidHttpResponseInterceptorList.addResponseInterceptor(HttpResponseInterceptor interceptor, int index) Deprecated.Inserts a response interceptor at the specified index.Method parameters in org.apache.http.protocol with type arguments of type HttpResponseInterceptorModifier and TypeMethodDescriptionvoidBasicHttpProcessor.removeResponseInterceptorByClass(Class<? extends HttpResponseInterceptor> clazz) Deprecated.voidHttpResponseInterceptorList.removeResponseInterceptorByClass(Class<? extends HttpResponseInterceptor> clazz) Deprecated.Removes all response interceptor of the specified classConstructors in org.apache.http.protocol with parameters of type HttpResponseInterceptorModifierConstructorDescriptionImmutableHttpProcessor(HttpRequestInterceptor[] requestInterceptors, HttpResponseInterceptor[] responseInterceptors) ImmutableHttpProcessor(HttpResponseInterceptor... responseInterceptors)