|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jboss.netty.handler.codec.http.CookieDecoder
public class CookieDecoder
Decodes an HTTP header value into Cookie
s. This decoder can decode
the HTTP cookie version 0, 1, and 2.
HttpRequest
req = ...; String value = req.getHeader("Cookie"); Set<Cookie
> cookies = newCookieDecoder
().decode(value);
CookieEncoder
Constructor Summary | |
---|---|
CookieDecoder()
Creates a new decoder. |
Method Summary | |
---|---|
java.util.Set<Cookie> |
decode(java.lang.String header)
Decodes the specified HTTP header value into Cookie s. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CookieDecoder()
Method Detail |
---|
public java.util.Set<Cookie> decode(java.lang.String header)
Cookie
s.
Cookie
s
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |