Class RestResponse

java.lang.Object
org.elasticsearch.rest.RestResponse
Direct Known Subclasses:
BytesRestResponse

public abstract class RestResponse extends Object
  • Constructor Details

    • RestResponse

      public RestResponse()
  • Method Details

    • contentType

      public abstract String contentType()
      The response content type.
    • content

      public abstract BytesReference content()
      The response content. Note, if the content is Releasable it should automatically be released when done by the channel sending it.
    • status

      public abstract RestStatus status()
      The rest status code.
    • copyHeaders

      public void copyHeaders(ElasticsearchException ex)
    • addHeader

      public void addHeader(String name, String value)
      Add a custom header.
    • getHeaders

      public Map<String,List<String>> getHeaders()
      Returns custom headers that have been added. This method should not be used to mutate headers.
    • filterHeaders

      public Map<String,List<String>> filterHeaders(Map<String,List<String>> headers)