Package ca.uhn.fhir.rest.client.api
Interface IHttpResponse
public interface IHttpResponse
An interface around the HTTP Response.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Buffer the message entity data.void
close()
Close the responseReturns a reader for the response entityGet map of the response headers and corresponding string values.getHeaders
(String theName) Return all headers in the response with the given typeExtractsContent-Type
value from the response exactly as specified by theContent-Type
header.int
Get the status code associated with the response.Get the response status information reason phrase associated with the response.Read the message entity input stream as an InputStream.
-
Method Details
-
bufferEntity
Buffer the message entity data.In case the message entity is backed by an unconsumed entity input stream, all the bytes of the original entity input stream are read and stored in a local buffer. The original entity input stream is consumed.
In case the response entity instance is not backed by an unconsumed input stream an invocation of
bufferEntity
method is ignored and the method returns.This operation is idempotent, i.e. it can be invoked multiple times with the same effect which also means that calling the
bufferEntity()
method on an already buffered (and thus closed) message instance is legal and has no further effect.Buffering the message entity data allows for multiple invocations of
readEntity(...)
methods on the response instance.- Throws:
IOException
- Since:
- 2.2
-
close
void close()Close the response -
createReader
Returns a reader for the response entity- Throws:
IOException
-
getAllHeaders
Map<String,List<String>> getAllHeaders()Get map of the response headers and corresponding string values.- Returns:
- response headers as a map header keys and they values.
-
getHeaders
Return all headers in the response with the given type -
getMimeType
ExtractsContent-Type
value from the response exactly as specified by theContent-Type
header. Returnsnull
if not specified. -
getRequestStopWatch
- Returns:
- Returns a StopWatch that was started right before the client request was started. The time returned by this client includes any time that was spent within the HTTP library (possibly including waiting for a connection, and any network activity)
-
getResponse
- Returns:
- the native response, depending on the client library used
-
getStatus
int getStatus()Get the status code associated with the response.- Returns:
- the response status code.
-
getStatusInfo
Get the response status information reason phrase associated with the response.- Returns:
- the reason phrase.
-
readEntity
Read the message entity input stream as an InputStream.- Throws:
IOException
-