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 java.lang.Object implements HttpProcessor
Default immutable implementation ofHttpProcessor.- Since:
- 5.0
-
-
Field Summary
Fields Modifier and Type Field Description private HttpRequestInterceptor[]requestInterceptorsprivate HttpResponseInterceptor[]responseInterceptors
-
Constructor Summary
Constructors Constructor Description DefaultHttpProcessor(java.util.List<HttpRequestInterceptor> requestInterceptors, java.util.List<HttpResponseInterceptor> responseInterceptors)DefaultHttpProcessor(HttpRequestInterceptor... requestInterceptors)DefaultHttpProcessor(HttpRequestInterceptor[] requestInterceptors, HttpResponseInterceptor[] responseInterceptors)DefaultHttpProcessor(HttpResponseInterceptor... responseInterceptors)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocess(HttpRequest request, EntityDetails entity, HttpContext context)Processes a request.voidprocess(HttpResponse response, EntityDetails entity, HttpContext context)Processes a response.
-
-
-
Field Detail
-
requestInterceptors
private final HttpRequestInterceptor[] requestInterceptors
-
responseInterceptors
private final HttpResponseInterceptor[] responseInterceptors
-
-
Constructor Detail
-
DefaultHttpProcessor
public DefaultHttpProcessor(HttpRequestInterceptor[] requestInterceptors, HttpResponseInterceptor[] responseInterceptors)
-
DefaultHttpProcessor
public DefaultHttpProcessor(java.util.List<HttpRequestInterceptor> requestInterceptors, java.util.List<HttpResponseInterceptor> responseInterceptors)
- Since:
- 4.3
-
DefaultHttpProcessor
public DefaultHttpProcessor(HttpRequestInterceptor... requestInterceptors)
-
DefaultHttpProcessor
public DefaultHttpProcessor(HttpResponseInterceptor... responseInterceptors)
-
-
Method Detail
-
process
public void process(HttpRequest request, EntityDetails entity, HttpContext context) throws java.io.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:
java.io.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 java.io.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:
java.io.IOException- in case of an I/O errorHttpException- in case of an HTTP protocol violation
-
-