final class BufferingClientHttpResponseWrapper extends java.lang.Object implements ClientHttpResponse
ClientHttpResponse that reads the response's body
into memory, thus allowing for multiple invocations of getBody().| Modifier and Type | Field and Description |
|---|---|
private byte[] |
body |
private ClientHttpResponse |
response |
| Constructor and Description |
|---|
BufferingClientHttpResponseWrapper(ClientHttpResponse response) |
| 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
|
HttpStatus |
getStatusCode()
Return the HTTP status code of the response.
|
java.lang.String |
getStatusText()
Return the HTTP status text of the response.
|
private final ClientHttpResponse response
private byte[] body
BufferingClientHttpResponseWrapper(ClientHttpResponse response)
public HttpStatus getStatusCode() throws java.io.IOException
ClientHttpResponsegetStatusCode in interface ClientHttpResponsejava.io.IOException - in case of I/O errorspublic int getRawStatusCode()
throws java.io.IOException
ClientHttpResponsegetRawStatusCode in interface ClientHttpResponsejava.io.IOException - in case of I/O errorspublic java.lang.String getStatusText()
throws java.io.IOException
ClientHttpResponsegetStatusText in interface ClientHttpResponsejava.io.IOException - in case of I/O errorspublic HttpHeaders getHeaders()
HttpMessagegetHeaders in interface HttpMessagenull)public java.io.InputStream getBody()
throws java.io.IOException
HttpInputMessagegetBody in interface HttpInputMessagenull)java.io.IOException - in case of I/O Errorspublic void close()
ClientHttpResponseclose in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in interface ClientHttpResponse