Package | Description |
---|---|
org.apache.http.protocol |
HTTP protocol execution framework and synchronous HTTP protocol handlers
based on the blocking I/O model.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HttpProcessor
HTTP 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.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicHttpProcessor
Default implementation of
HttpProcessor . |
class |
ImmutableHttpProcessor
Immutable
HttpProcessor . |
class |
RequestConnControl
RequestConnControl is responsible for adding
Connection header
to the outgoing requests, which is essential for managing persistence of
HTTP/1.0 connections. |
class |
RequestContent
RequestContent is the most important interceptor for outgoing requests.
|
class |
RequestDate
RequestDate interceptor is responsible for adding
Date header
to the outgoing requests This interceptor is optional for client side
protocol processors. |
class |
RequestExpectContinue
RequestExpectContinue is responsible for enabling the 'expect-continue'
handshake by adding
Expect header. |
class |
RequestTargetHost
RequestTargetHost is responsible for adding
Host header. |
class |
RequestUserAgent
RequestUserAgent is responsible for adding
User-Agent header. |
Modifier and Type | Field and Description |
---|---|
protected List<HttpRequestInterceptor> |
BasicHttpProcessor.requestInterceptors |
Modifier and Type | Method and Description |
---|---|
HttpRequestInterceptor |
BasicHttpProcessor.getRequestInterceptor(int index) |
HttpRequestInterceptor |
HttpRequestInterceptorList.getRequestInterceptor(int index)
Obtains a request interceptor from this list.
|
Modifier and Type | Method and Description |
---|---|
void |
BasicHttpProcessor.addInterceptor(HttpRequestInterceptor interceptor) |
void |
BasicHttpProcessor.addInterceptor(HttpRequestInterceptor interceptor,
int index) |
void |
BasicHttpProcessor.addRequestInterceptor(HttpRequestInterceptor itcp) |
void |
HttpRequestInterceptorList.addRequestInterceptor(HttpRequestInterceptor interceptor)
Appends a request interceptor to this list.
|
void |
BasicHttpProcessor.addRequestInterceptor(HttpRequestInterceptor itcp,
int index) |
void |
HttpRequestInterceptorList.addRequestInterceptor(HttpRequestInterceptor interceptor,
int index)
Inserts a request interceptor at the specified index.
|
Modifier and Type | Method and Description |
---|---|
void |
BasicHttpProcessor.removeRequestInterceptorByClass(Class<? extends HttpRequestInterceptor> clazz) |
void |
HttpRequestInterceptorList.removeRequestInterceptorByClass(Class<? extends HttpRequestInterceptor> clazz)
Removes all request interceptor of the specified class
|
Constructor and Description |
---|
ImmutableHttpProcessor(HttpRequestInterceptor[] requestInterceptors) |
ImmutableHttpProcessor(HttpRequestInterceptor[] requestInterceptors,
HttpResponseInterceptor[] responseInterceptors) |
Copyright © 2005-2015 The Apache Software Foundation. All Rights Reserved.