-
- All Superinterfaces:
Comparable<Cookie>
- All Known Implementing Classes:
DefaultCookie
public interface Cookie extends Comparable<Cookie>
An interface defining an HTTP cookie.
-
-
Field Summary
Fields Modifier and Type Field Description static longUNDEFINED_MAX_AGEConstant for undefined MaxAge attribute value.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringdomain()Returns the domain of thisCookie.booleanisHttpOnly()Checks to see if thisCookiecan only be accessed via HTTP.booleanisSecure()Checks to see if thisCookieis securelongmaxAge()Returns the maximum age of thisCookiein seconds orUNDEFINED_MAX_AGEif unspecifiedStringname()Returns the name of thisCookie.Stringpath()Returns the path of thisCookie.voidsetDomain(String domain)Sets the domain of thisCookie.voidsetHttpOnly(boolean httpOnly)Determines if thisCookieis HTTP only.voidsetMaxAge(long maxAge)Sets the maximum age of thisCookiein seconds.voidsetPath(String path)Sets the path of thisCookie.voidsetSecure(boolean secure)Sets the security getStatus of thisCookievoidsetValue(String value)Sets the value of thisCookie.voidsetWrap(boolean wrap)Sets true if the value of thisCookieis to be wrapped with double quotes.Stringvalue()Returns the value of thisCookie.booleanwrap()Returns true if the raw value of thisCookie, was wrapped with double quotes in original Set-Cookie header.-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
UNDEFINED_MAX_AGE
static final long UNDEFINED_MAX_AGE
Constant for undefined MaxAge attribute value.- See Also:
- Constant Field Values
-
-
Method Detail
-
setValue
void setValue(String value)
Sets the value of thisCookie.- Parameters:
value- The value to set
-
wrap
boolean wrap()
Returns true if the raw value of thisCookie, was wrapped with double quotes in original Set-Cookie header.- Returns:
- If the value of this
Cookieis to be wrapped
-
setWrap
void setWrap(boolean wrap)
Sets true if the value of thisCookieis to be wrapped with double quotes.- Parameters:
wrap- true if wrap
-
setDomain
void setDomain(String domain)
Sets the domain of thisCookie.- Parameters:
domain- The domain to use
-
setPath
void setPath(String path)
Sets the path of thisCookie.- Parameters:
path- The path to use for thisCookie
-
maxAge
long maxAge()
Returns the maximum age of thisCookiein seconds orUNDEFINED_MAX_AGEif unspecified- Returns:
- The maximum age of this
Cookie
-
setMaxAge
void setMaxAge(long maxAge)
Sets the maximum age of thisCookiein seconds. If an age of0is specified, thisCookiewill be automatically removed by browser because it will expire immediately. IfUNDEFINED_MAX_AGEis specified, thisCookiewill be removed when the browser is closed.- Parameters:
maxAge- The maximum age of thisCookiein seconds
-
isSecure
boolean isSecure()
Checks to see if thisCookieis secure- Returns:
- True if this
Cookieis secure, otherwise false
-
setSecure
void setSecure(boolean secure)
Sets the security getStatus of thisCookie- Parameters:
secure- True if thisCookieis to be secure, otherwise false
-
isHttpOnly
boolean isHttpOnly()
Checks to see if thisCookiecan only be accessed via HTTP. If this returns true, theCookiecannot be accessed through client side script - But only if the browser supports it. For more information, please look here- Returns:
- True if this
Cookieis HTTP-only or false if it isn't
-
setHttpOnly
void setHttpOnly(boolean httpOnly)
Determines if thisCookieis HTTP only. If set to true, thisCookiecannot be accessed by a client side script. However, this works only if the browser supports it. For for information, please look here.- Parameters:
httpOnly- True if theCookieis HTTP only, otherwise false.
-
-