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

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

Introduction

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

Prototype

String domain();

Source Link

Document

Returns the domain 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());
    setExpiration(cookie.maxAge());/*from  w w w. ja  v a2s .c  o  m*/
    setPath(cookie.path());
    needsUpdating = false;
}