Uses of Interface
org.apache.http.HttpResponseInterceptor
| Package | Description |
|---|---|
| org.apache.http.client.protocol |
Additional request and response interceptors.
|
| org.apache.http.impl.client | |
| org.apache.http.protocol |
HTTP protocol execution framework.
|
-
Uses of HttpResponseInterceptor in org.apache.http.client.protocol
Classes in org.apache.http.client.protocol that implement HttpResponseInterceptor Modifier and Type Class Description classResponseProcessCookiesResponse interceptor that populates the currentCookieStorewith data contained in response cookies received in the given the HTTP response. -
Uses of HttpResponseInterceptor in org.apache.http.impl.client
Methods in org.apache.http.impl.client that return HttpResponseInterceptor Modifier and Type Method Description HttpResponseInterceptorAbstractHttpClient. getResponseInterceptor(int index)Methods in org.apache.http.impl.client with parameters of type HttpResponseInterceptor Modifier and Type Method Description voidAbstractHttpClient. addResponseInterceptor(HttpResponseInterceptor itcp)voidAbstractHttpClient. addResponseInterceptor(HttpResponseInterceptor itcp, int index)Method parameters in org.apache.http.impl.client with type arguments of type HttpResponseInterceptor Modifier and Type Method Description voidAbstractHttpClient. removeResponseInterceptorByClass(Class<? extends HttpResponseInterceptor> clazz) -
Uses of HttpResponseInterceptor in org.apache.http.protocol
Subinterfaces of HttpResponseInterceptor in org.apache.http.protocol Modifier and Type Interface Description interfaceHttpProcessorPerforms interceptor processing of requests and responses.Classes in org.apache.http.protocol that implement HttpResponseInterceptor Modifier and Type Class Description classBasicHttpProcessorKeeps lists of interceptors for processing requests and responses.classResponseConnControlA response interceptor that suggests connection keep-alive to the client.classResponseContentA response interceptor that sets up entity-related headers.classResponseDateA response interceptor that adds a Date header.classResponseServerA response interceptor that adds a Server header.Methods in org.apache.http.protocol that return HttpResponseInterceptor Modifier and Type Method Description HttpResponseInterceptorBasicHttpProcessor. getResponseInterceptor(int index)HttpResponseInterceptorHttpResponseInterceptorList. getResponseInterceptor(int index)Obtains a response interceptor from this list.Methods in org.apache.http.protocol with parameters of type HttpResponseInterceptor Modifier and Type Method Description voidBasicHttpProcessor. addInterceptor(HttpResponseInterceptor interceptor)Same asaddResponseInterceptor.voidBasicHttpProcessor. addInterceptor(HttpResponseInterceptor interceptor, int index)voidBasicHttpProcessor. addResponseInterceptor(HttpResponseInterceptor itcp)voidBasicHttpProcessor. addResponseInterceptor(HttpResponseInterceptor itcp, int index)voidHttpResponseInterceptorList. addResponseInterceptor(HttpResponseInterceptor itcp)Appends a response interceptor to this list.voidHttpResponseInterceptorList. addResponseInterceptor(HttpResponseInterceptor itcp, int index)Inserts a response interceptor at the specified index.