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

Example usage for Java io.netty.handler.codec.http 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.

The text is from its open source code.

Method

Stringdomain()
Returns the domain of this Cookie .
StringgetComment()
StringgetDomain()
longgetMaxAge()
StringgetName()
StringgetPath()
StringgetValue()
intgetVersion()
booleanisDiscard()
Checks to see if this Cookie is to be discarded by the browser at the end of the current session.
booleanisSecure()
Checks to see if this Cookie is secure
longmaxAge()
Returns the maximum age of this Cookie in seconds or Long#MIN_VALUE if unspecified
Stringname()
Returns the name of this Cookie .
Stringpath()
Returns the path of this Cookie .
voidsetComment(String comment)
Sets the comment 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 .
voidsetVersion(int version)
Sets the version of this Cookie .
Stringvalue()
Returns the value of this Cookie .