Example usage for io.netty.handler.codec.http Cookie path

List of usage examples for io.netty.handler.codec.http Cookie path

Introduction

In this page you can find the example usage for io.netty.handler.codec.http Cookie path.

Prototype

String path();

Source Link

Document

Returns the path of this Cookie .

Usage

From source file:com.chiorichan.http.HttpCookie.java

License:Mozilla Public License

public HttpCookie(Cookie cookie) {
    this(cookie.name(), cookie.value());
    setDomain(cookie.domain());//w  ww.  ja v a 2  s .c  om
    setExpiration(cookie.maxAge());
    setPath(cookie.path());
    needsUpdating = false;
}