Class AbstractHttpClientResponseHandler<T>
java.lang.Object
org.apache.hc.client5.http.impl.classic.AbstractHttpClientResponseHandler<T>
- All Implemented Interfaces:
org.apache.hc.core5.http.io.HttpClientResponseHandler<T>
- Direct Known Subclasses:
BasicHttpClientResponseHandler
,ContentResponseHandler
@Contract(threading=STATELESS)
public abstract class AbstractHttpClientResponseHandler<T>
extends Object
implements org.apache.hc.core5.http.io.HttpClientResponseHandler<T>
A generic
HttpClientResponseHandler
that works with the response entity
for successful (2xx) responses. If the response code was >= 300, the response
body is consumed and an HttpResponseException
is thrown.
If this is used with
HttpClient.execute(org.apache.hc.core5.http.ClassicHttpRequest, HttpClientResponseHandler)
,
HttpClient may handle redirects (3xx responses) internally.
- Since:
- 4.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract T
handleEntity
(org.apache.hc.core5.http.HttpEntity entity) Handle the response entity and transform it into the actual response object.handleResponse
(org.apache.hc.core5.http.ClassicHttpResponse response) Read the entity from the response body and pass it to the entity handler method if the response was successful (a 2xx status code).
-
Constructor Details
-
AbstractHttpClientResponseHandler
public AbstractHttpClientResponseHandler()
-
-
Method Details
-
handleResponse
Read the entity from the response body and pass it to the entity handler method if the response was successful (a 2xx status code). If no response body exists, this returns null. If the response was unsuccessful (>= 300 status code), throws anHttpResponseException
.- Specified by:
handleResponse
in interfaceorg.apache.hc.core5.http.io.HttpClientResponseHandler<T>
- Throws:
IOException
-
handleEntity
Handle the response entity and transform it into the actual response object.- Throws:
IOException
-