Package org.springframework.web.util
Class CookieGenerator
java.lang.Object
org.springframework.web.util.CookieGenerator
- Direct Known Subclasses:
CookieThemeResolver
Deprecated.
Helper class for cookie generation, carrying cookie descriptor settings
as bean properties and being able to add and remove cookie to/from a
given response.
Can serve as base class for components that generate specific cookies.
- Since:
- 1.1.4
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCookie
(HttpServletResponse response, String cookieValue) Deprecated.Add a cookie with the given value to the response, using the cookie descriptor settings of this generator.protected Cookie
createCookie
(String cookieValue) Deprecated.Create a cookie with the given value, using the cookie descriptor settings of this generator (except for "cookieMaxAge").Deprecated.Return the domain for cookies created by this generator, if any.Deprecated.Return the maximum age for cookies created by this generator.Deprecated.Return the given name for cookies created by this generator.Deprecated.Return the path for cookies created by this generator.boolean
Deprecated.Return whether the cookie is supposed to be marked with the "HttpOnly" attribute.boolean
Deprecated.Return whether the cookie should only be sent using a secure protocol, such as HTTPS (SSL).void
removeCookie
(HttpServletResponse response) Deprecated.Remove the cookie that this generator describes from the response.void
setCookieDomain
(String cookieDomain) Deprecated.Use the given domain for cookies created by this generator.void
setCookieHttpOnly
(boolean cookieHttpOnly) Deprecated.Set whether the cookie is supposed to be marked with the "HttpOnly" attribute.void
setCookieMaxAge
(Integer cookieMaxAge) Deprecated.Use the given maximum age (in seconds) for cookies created by this generator.void
setCookieName
(String cookieName) Deprecated.Use the given name for cookies created by this generator.void
setCookiePath
(String cookiePath) Deprecated.Use the given path for cookies created by this generator.void
setCookieSecure
(boolean cookieSecure) Deprecated.Set whether the cookie should only be sent using a secure protocol, such as HTTPS (SSL).
-
Field Details
-
DEFAULT_COOKIE_PATH
Deprecated.Default path that cookies will be visible to: "/", i.e. the entire server.- See Also:
-
logger
Deprecated.
-
-
Constructor Details
-
CookieGenerator
public CookieGenerator()Deprecated.
-
-
Method Details
-
setCookieName
Deprecated.Use the given name for cookies created by this generator.- See Also:
-
getCookieName
Deprecated.Return the given name for cookies created by this generator. -
setCookieDomain
Deprecated.Use the given domain for cookies created by this generator. The cookie is only visible to servers in this domain.- See Also:
-
getCookieDomain
Deprecated.Return the domain for cookies created by this generator, if any. -
setCookiePath
Deprecated.Use the given path for cookies created by this generator. The cookie is only visible to URLs in this path and below.- See Also:
-
getCookiePath
Deprecated.Return the path for cookies created by this generator. -
setCookieMaxAge
Deprecated.Use the given maximum age (in seconds) for cookies created by this generator. Useful special value: -1 ... not persistent, deleted when client shuts down.Default is no specific maximum age at all, using the Servlet container's default.
- See Also:
-
getCookieMaxAge
Deprecated.Return the maximum age for cookies created by this generator. -
setCookieSecure
public void setCookieSecure(boolean cookieSecure) Deprecated.Set whether the cookie should only be sent using a secure protocol, such as HTTPS (SSL). This is an indication to the receiving browser, not processed by the HTTP server itself.Default is "false".
- See Also:
-
isCookieSecure
public boolean isCookieSecure()Deprecated.Return whether the cookie should only be sent using a secure protocol, such as HTTPS (SSL). -
setCookieHttpOnly
public void setCookieHttpOnly(boolean cookieHttpOnly) Deprecated.Set whether the cookie is supposed to be marked with the "HttpOnly" attribute.Default is "false".
- See Also:
-
isCookieHttpOnly
public boolean isCookieHttpOnly()Deprecated.Return whether the cookie is supposed to be marked with the "HttpOnly" attribute. -
addCookie
Deprecated.Add a cookie with the given value to the response, using the cookie descriptor settings of this generator.Delegates to
createCookie(java.lang.String)
for cookie creation.- Parameters:
response
- the HTTP response to add the cookie tocookieValue
- the value of the cookie to add- See Also:
-
removeCookie
Deprecated.Remove the cookie that this generator describes from the response. Will generate a cookie with empty value and max age 0.Delegates to
createCookie(java.lang.String)
for cookie creation.- Parameters:
response
- the HTTP response to remove the cookie from- See Also:
-
createCookie
Deprecated.Create a cookie with the given value, using the cookie descriptor settings of this generator (except for "cookieMaxAge").- Parameters:
cookieValue
- the value of the cookie to crate- Returns:
- the cookie
- See Also:
-
ResponseCookie