public interface HttpRequest extends HttpMessage
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
.
Modifier and Type | Method and Description |
---|---|
HttpMethod |
getMethod()
Returns the method of this request.
|
String |
getUri()
Returns the URI (or path) of this request.
|
void |
setMethod(HttpMethod method)
Sets the method of this request.
|
void |
setUri(String uri)
Sets the URI (or path) of this request.
|
getContent, getProtocolVersion, headers, isChunked, setChunked, setContent, setProtocolVersion
HttpMethod getMethod()
void setMethod(HttpMethod method)
String getUri()
void setUri(String uri)
Copyright © 2008-2016 The Netty Project. All Rights Reserved.