Class Response
java.lang.Object
co.elastic.clients.transport.rest5_client.low_level.Response
Holds an elasticsearch response. It wraps the
BasicClassicHttpResponse returned and associates
it with its corresponding RequestLine and HttpHost.-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.hc.core5.http.HttpEntityReturns the response body available, null otherwiseReturns the value of the first header with a specified name of this message.org.apache.hc.core5.http.Header[]Returns all the response headersorg.apache.hc.core5.http.HttpHostgetHost()Returns the node that returned this responseorg.apache.hc.core5.http.message.RequestLineReturns the request line that generated this responseintReturns a list of all warning headers returned in the response.booleanReturns true if there is at least one warning header returned in the response.toString()
-
Method Details
-
getRequestLine
public org.apache.hc.core5.http.message.RequestLine getRequestLine()Returns the request line that generated this response -
getHost
public org.apache.hc.core5.http.HttpHost getHost()Returns the node that returned this response -
getStatusCode
public int getStatusCode() -
getHeaders
public org.apache.hc.core5.http.Header[] getHeaders()Returns all the response headers -
getHeader
Returns the value of the first header with a specified name of this message. If there is more than one matching header in the message the first element is returned. If there is no matching header in the messagenullis returned. -
getEntity
public org.apache.hc.core5.http.HttpEntity getEntity()Returns the response body available, null otherwise- See Also:
-
HttpEntity
-
getWarnings
Returns a list of all warning headers returned in the response. -
hasWarnings
public boolean hasWarnings()Returns true if there is at least one warning header returned in the response. -
toString
-