Java io.netty.handler.codec.http.cookie Cookie fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.codec.http.cookie Cookie fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.codec.http.cookie Cookie.

The text is from its open source code.

Field

longUNDEFINED_MAX_AGE
Constant for undefined MaxAge attribute value.

Method

Stringdomain()
Returns the domain of this Cookie .
booleanisHttpOnly()
Checks to see if this Cookie can only be accessed via HTTP.
booleanisSecure()
Checks to see if this Cookie is secure
longmaxAge()
Returns the maximum age of this Cookie in seconds or Cookie#UNDEFINED_MAX_AGE if unspecified
Stringname()
Returns the name of this Cookie .
Stringpath()
Returns the path of this Cookie .
voidsetDomain(String domain)
Sets the domain of this Cookie .
voidsetHttpOnly(boolean httpOnly)
Determines if this Cookie is HTTP only.
voidsetMaxAge(long maxAge)
Sets the maximum age of this Cookie in seconds.
voidsetPath(String path)
Sets the path of this Cookie .
voidsetSecure(boolean secure)
Sets the security getStatus of this Cookie
voidsetValue(String value)
Sets the value of this Cookie .
Stringvalue()
Returns the value of this Cookie .