public interface IHttpResponse
| Modifier and Type | Method and Description |
|---|---|
void |
bufferEntitity()
Deprecated.
This method was deprecated in HAPI FHIR 2.2 because its name has a typo. Use
bufferEntity() instead. |
void |
bufferEntity()
Buffer the message entity data.
|
void |
close()
Close the response
|
Reader |
createReader()
Returns a reader for the response entity
|
Map<String,List<String>> |
getAllHeaders()
Get map of the response headers and corresponding string values.
|
List<String> |
getHeaders(String theName)
Return all headers in the response with the given type
|
String |
getMimeType()
Extracts
Content-Type value from the response exactly as
specified by the Content-Type header. |
StopWatch |
getRequestStopWatch() |
Object |
getResponse() |
int |
getStatus()
Get the status code associated with the response.
|
String |
getStatusInfo()
Get the response status information reason phrase associated with the response.
|
InputStream |
readEntity()
Read the message entity input stream as an InputStream.
|
@Deprecated void bufferEntitity() throws IOException
bufferEntity() instead.IOExceptionvoid bufferEntity() throws IOException
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.
IOExceptionvoid close()
Reader createReader() throws IOException
IOExceptionMap<String,List<String>> getAllHeaders()
List<String> getHeaders(String theName)
String getMimeType()
Content-Type value from the response exactly as
specified by the Content-Type header. Returns null
if not specified.StopWatch getRequestStopWatch()
Object getResponse()
int getStatus()
String getStatusInfo()
InputStream readEntity() throws IOException
IOExceptionCopyright © 2014–2019 University Health Network. All rights reserved.