final class HttpComponentsClientHttpResponse extends AbstractClientHttpResponse
ClientHttpResponse implementation that uses
Apache HttpComponents HttpClient to execute requests.
Created via the HttpComponentsClientHttpRequest.
NOTE: Requires Apache HttpComponents 4.3 or higher, as of Spring 4.0.
AbstractClientHttpRequest.execute()| Modifier and Type | Field and Description |
|---|---|
private HttpHeaders |
headers |
private HttpResponse |
httpResponse |
| Constructor and Description |
|---|
HttpComponentsClientHttpResponse(HttpResponse httpResponse) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close this response, freeing any resources created.
|
java.io.InputStream |
getBody()
Return the body of the message as an input stream.
|
HttpHeaders |
getHeaders()
Return the headers of this message.
|
int |
getRawStatusCode()
Return the HTTP status code of the response as integer
|
java.lang.String |
getStatusText()
Return the HTTP status text of the response.
|
getStatusCodeprivate final HttpResponse httpResponse
private HttpHeaders headers
HttpComponentsClientHttpResponse(HttpResponse httpResponse)
public int getRawStatusCode()
throws java.io.IOException
ClientHttpResponsejava.io.IOException - in case of I/O errorspublic java.lang.String getStatusText()
throws java.io.IOException
ClientHttpResponsejava.io.IOException - in case of I/O errorspublic HttpHeaders getHeaders()
HttpMessagenull)public java.io.InputStream getBody()
throws java.io.IOException
HttpInputMessagenull)java.io.IOException - in case of I/O Errorspublic void close()
ClientHttpResponse