Interface HttpRequest

All Superinterfaces:
HttpMessage
All Known Implementing Classes:
DefaultHttpRequest

public interface HttpRequest extends HttpMessage
An HTTP request.

Accessing Query Parameters and Cookie

Unlike the Servlet API, a query string is constructed and decomposed by QueryStringEncoder and QueryStringDecoder. Cookie support is also provided separately via ServerCookieDecoder, ClientCookieDecoder, ServerCookieEncoder, and ClientCookieEncoder.

See Also:
  • Method Details

    • getMethod

      HttpMethod getMethod()
      Returns the method of this request.
    • setMethod

      void setMethod(HttpMethod method)
      Sets the method of this request.
    • getUri

      String getUri()
      Returns the URI (or path) of this request.
    • setUri

      void setUri(String uri)
      Sets the URI (or path) of this request.