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 TypeMethodDescriptionvoidprocess(HttpRequest request, EntityDetails entity, HttpContext context) Processes a request.voidprocess(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:HttpRequestInterceptorProcesses 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:
processin interfaceHttpRequestInterceptor- Parameters:
request- the request to processentity- the request entity details ornullif 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:HttpResponseInterceptorProcesses 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:
processin interfaceHttpResponseInterceptor- Parameters:
response- the response to processentity- the request entity details ornullif not availablecontext- the context for the request- Throws:
IOException- in case of an I/O errorHttpException- in case of an HTTP protocol violation
-