Class DefaultHttpProcessor
java.lang.Object
org.apache.hc.core5.http.protocol.DefaultHttpProcessor
- All Implemented Interfaces:
HttpRequestInterceptor
,HttpResponseInterceptor
,HttpProcessor
@Contract(threading=IMMUTABLE_CONDITIONAL)
public final class DefaultHttpProcessor
extends Object
implements HttpProcessor
Default immutable implementation of
HttpProcessor
.- Since:
- 5.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final HttpRequestInterceptor[]
private final HttpResponseInterceptor[]
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultHttpProcessor
(List<HttpRequestInterceptor> requestInterceptors, List<HttpResponseInterceptor> responseInterceptors) DefaultHttpProcessor
(HttpRequestInterceptor... requestInterceptors) DefaultHttpProcessor
(HttpRequestInterceptor[] requestInterceptors, HttpResponseInterceptor[] responseInterceptors) DefaultHttpProcessor
(HttpResponseInterceptor... responseInterceptors) -
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(HttpRequest request, EntityDetails entity, HttpContext context) Processes a request.void
process
(HttpResponse response, EntityDetails entity, HttpContext context) Processes a response.
-
Field Details
-
requestInterceptors
-
responseInterceptors
-
-
Constructor Details
-
DefaultHttpProcessor
public DefaultHttpProcessor(HttpRequestInterceptor[] requestInterceptors, HttpResponseInterceptor[] responseInterceptors) -
DefaultHttpProcessor
public DefaultHttpProcessor(List<HttpRequestInterceptor> requestInterceptors, List<HttpResponseInterceptor> responseInterceptors) - Since:
- 4.3
-
DefaultHttpProcessor
-
DefaultHttpProcessor
-
-
Method Details
-
process
public void process(HttpRequest request, EntityDetails entity, HttpContext context) throws IOException, HttpException Description copied from interface:HttpRequestInterceptor
Processes a request. On the client side, this step is performed before the request is sent to the server. On the server side, this step is performed on incoming messages before the message body is evaluated.- Specified by:
process
in interfaceHttpRequestInterceptor
- Parameters:
request
- the request to processentity
- the request entity details ornull
if not availablecontext
- the context for the request- Throws:
IOException
- in case of an I/O errorHttpException
- in case of an HTTP protocol violation
-
process
public void process(HttpResponse response, EntityDetails entity, HttpContext context) throws IOException, HttpException Description copied from interface:HttpResponseInterceptor
Processes a response. On the server side, this step is performed before the response is sent to the client. On the client side, this step is performed on incoming messages before the message body is evaluated.- Specified by:
process
in interfaceHttpResponseInterceptor
- Parameters:
response
- the response to processentity
- the request entity details ornull
if not availablecontext
- the context for the request- Throws:
IOException
- in case of an I/O errorHttpException
- in case of an HTTP protocol violation
-