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 CookieEncoder
and
CookieDecoder
.
HttpResponse
,
CookieEncoder
,
CookieDecoder
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.
|
addHeader, clearHeaders, containsHeader, getContent, getContentLength, getContentLength, getHeader, getHeaderNames, getHeaders, getHeaders, getProtocolVersion, isChunked, isKeepAlive, removeHeader, setChunked, setContent, setHeader, setHeader, setProtocolVersion
HttpMethod getMethod()
void setMethod(HttpMethod method)
String getUri()
void setUri(String uri)
Copyright © 2008-2014 The Netty Project. All Rights Reserved.