Package org.elasticsearch.http
Interface HttpRequest
- All Known Implementing Classes:
HttpPipelinedRequest
public interface HttpRequest
A basic http request abstraction. Http modules needs to implement this interface to integrate with the
server package's rest handling.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionallHeaders(String name)
content()
createResponse(RestStatus status, BytesReference content)
Create an http response from this request and the supplied status and content.Get all of the headers and values associated with the headers.default String
method()
Returns the HTTP method used in the HTTP request.void
release()
Release any resources associated with this request.If this instances uses any pooled resources, creates a copy of this instance that does not use any pooled resources and releases any resources associated with this instance.removeHeader(String header)
uri()
The uri of the rest request, with the query string.
-
Method Details
-
method
RestRequest.Method method()Returns the HTTP method used in the HTTP request.- Returns:
- the
RestRequest.Method
used in the REST request - Throws:
IllegalArgumentException
- if the HTTP method is invalid
-
uri
String uri()The uri of the rest request, with the query string. -
content
BytesReference content() -
getHeaders
Get all of the headers and values associated with the headers. Modifications of this map are not supported. -
header
-
allHeaders
-
strictCookies
-
protocolVersion
HttpRequest.HttpVersion protocolVersion() -
removeHeader
-
createResponse
Create an http response from this request and the supplied status and content. -
getInboundException
-
release
void release()Release any resources associated with this request. Implementations should be idempotent. The behavior ofcontent()
after this method has been invoked is undefined and implementation specific. -
releaseAndCopy
HttpRequest releaseAndCopy()If this instances uses any pooled resources, creates a copy of this instance that does not use any pooled resources and releases any resources associated with this instance. If the instance does not use any shared resources, returns itself.- Returns:
- a safe unpooled http request
-