Package org.elasticsearch.rest
Class RestResponse
java.lang.Object
org.elasticsearch.rest.RestResponse
- Direct Known Subclasses:
BytesRestResponse
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a custom header.abstract BytesReference
content()
The response content.abstract String
The response content type.void
filterHeaders(Map<String,List<String>> headers)
Returns custom headers that have been added.abstract RestStatus
status()
The rest status code.
-
Constructor Details
-
RestResponse
public RestResponse()
-
-
Method Details
-
contentType
The response content type. -
content
The response content. Note, if the content isReleasable
it should automatically be released when done by the channel sending it. -
status
The rest status code. -
copyHeaders
-
addHeader
Add a custom header. -
getHeaders
Returns custom headers that have been added. This method should not be used to mutate headers. -
filterHeaders
-