Package org.apache.tomcat.util.http
Class CookieProcessorBase
java.lang.Object
org.apache.tomcat.util.http.CookieProcessorBase
- All Implemented Interfaces:
- CookieProcessor
- Direct Known Subclasses:
- Rfc6265CookieProcessor
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected static final Stringprotected static final ThreadLocal<DateFormat>
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanShould thePartitionedattribute be added by default to cookies created for this web application.voidsetPartitioned(boolean partitioned) Configure whether thePartitionedattribute should be added by default to cookies created for this web application.voidsetSameSiteCookies(String sameSiteCookies) Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.tomcat.util.http.CookieProcessorgenerateHeader, getCharset, parseCookieHeader
- 
Field Details- 
COOKIE_DATE_FORMAT
- 
ANCIENT_DATE
 
- 
- 
Constructor Details- 
CookieProcessorBasepublic CookieProcessorBase()
 
- 
- 
Method Details- 
getSameSiteCookies
- 
setSameSiteCookies
- 
getPartitionedpublic boolean getPartitioned()Should thePartitionedattribute be added by default to cookies created for this web application.The name of the attribute used to indicate a partitioned cookie as part of CHIPS is not defined by an RFC and may change in a non-backwards compatible way once equivalent functionality is included in an RFC. - Returns:
- trueif the- Partitionedattribute should be added by default to cookies created for this web application, otherwise- false
 
- 
setPartitionedpublic void setPartitioned(boolean partitioned) Configure whether thePartitionedattribute should be added by default to cookies created for this web application.The name of the attribute used to indicate a partitioned cookie as part of CHIPS is not defined by an RFC and may change in a non-backwards compatible way once equivalent functionality is included in an RFC. - Parameters:
- partitioned-- trueif the- Partitionedattribute should be added by default to cookies created for this web application, otherwise- false
 
 
-