Package org.apache.tomcat.util.http
Interface CookieProcessor
- All Known Implementing Classes:
CookieProcessorBase
,LegacyCookieProcessor
,Rfc6265CookieProcessor
public interface CookieProcessor
-
Method Summary
Modifier and TypeMethodDescriptiongenerateHeader
(Cookie cookie) Deprecated.default String
generateHeader
(Cookie cookie, HttpServletRequest request) Generate theSet-Cookie
HTTP header value for the given Cookie.Obtain the character set that will be used when converting between bytes and characters when parsing and/or generating HTTP headers for cookies.void
parseCookieHeader
(MimeHeaders headers, ServerCookies serverCookies) Parse the provided headers into server cookie objects.
-
Method Details
-
parseCookieHeader
Parse the provided headers into server cookie objects.- Parameters:
headers
- The HTTP headers to parseserverCookies
- The server cookies object to populate with the results of the parsing
-
generateHeader
Deprecated.This method has been replaced withgenerateHeader(Cookie, HttpServletRequest)
and will be removed from Tomcat 10 onwards.Generate theSet-Cookie
HTTP header value for the given Cookie.- Parameters:
cookie
- The cookie for which the header will be generated- Returns:
- The header value in a form that can be added directly to the response
-
generateHeader
Generate theSet-Cookie
HTTP header value for the given Cookie. This method receives as parameter the servlet request so that it can make decisions based on request properties. One such use-case is decide if the SameSite attribute should be added to the cookie based on the User-Agent or other request header because there are browser versions incompatible with the SameSite attribute. This is described by the Chromium project.The default implementation calls the deprecated
generateHeader(Cookie)
method. Implementors should not rely on this default method as it is present only for transitional compatibility and will be removed in Tomcat 10 at the same time as thegenerateHeader(Cookie)
method.- Parameters:
request
- The servlet requestcookie
- The cookie for which the header will be generated- Returns:
- The header value in a form that can be added directly to the response
-
getCharset
Charset getCharset()Obtain the character set that will be used when converting between bytes and characters when parsing and/or generating HTTP headers for cookies.- Returns:
- The character set used for byte<->character conversions
-
generateHeader(Cookie, HttpServletRequest)
and will be removed from Tomcat 10 onwards.