Package com.atlassian.confluence.web
Class Cookies
- java.lang.Object
-
- com.atlassian.confluence.web.Cookies
-
public final class Cookies extends Object
- Since:
- 8.8
-
-
Constructor Summary
Constructors Constructor Description Cookies()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getCookieValue(String key)
static String
getCookieValue(javax.servlet.http.HttpServletRequest request, String key)
static javax.servlet.http.Cookie
setCookie(String key, String value)
Sets a cookie.
-
-
-
Method Detail
-
setCookie
public static javax.servlet.http.Cookie setCookie(String key, String value)
Sets a cookie. set to use a default cookie age of one year and the context path as the default path- Parameters:
key
- the key of the cookievalue
- the value of the cookie- Returns:
- the new Cookie object
-
getCookieValue
public static String getCookieValue(javax.servlet.http.HttpServletRequest request, String key)
-
-