Interface HttpRequest

All Superinterfaces:
io.netty.handler.codec.DecoderResultProvider, HttpMessage, HttpObject
All Known Subinterfaces:
FullHttpRequest
All Known Implementing Classes:
DefaultFullHttpRequest, 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: