Package org.apache.catalina.core
Class ApplicationSessionCookieConfig
java.lang.Object
org.apache.catalina.core.ApplicationSessionCookieConfig
- All Implemented Interfaces:
- SessionCookieConfig
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic CookiecreateSessionCookie(Context context, String sessionId, boolean secure) Creates a new session cookie for the given session IDObtain the comment to use for session cookies.Obtain the domain to use for session cookies.intObtain the maximum age to set for a session cookie.getName()Obtain the name to use for the session cookies.getPath()Obtain the path to use for session cookies.booleanWill session cookies be created with the httpOnly flag set?booleanisSecure()Will session cookies be created with the secure flag set?voidsetComment(String comment) Sets the comment for the session cookievoidSets the domain for the session cookievoidsetHttpOnly(boolean httpOnly) Sets the httpOnly flag for the session cookie.voidsetMaxAge(int maxAge) Sets the maximum age.voidSets the session cookie name.voidSets the path of the session cookie.voidsetSecure(boolean secure) Sets the secure flag for the session cookie.
- 
Constructor Details- 
ApplicationSessionCookieConfig
 
- 
- 
Method Details- 
getCommentDescription copied from interface:javax.servlet.SessionCookieConfigObtain the comment to use for session cookies.- Specified by:
- getCommentin interface- SessionCookieConfig
- Returns:
- the comment to use for session cookies.
 
- 
getDomainDescription copied from interface:javax.servlet.SessionCookieConfigObtain the domain to use for session cookies.- Specified by:
- getDomainin interface- SessionCookieConfig
- Returns:
- the domain to use for session cookies.
 
- 
getMaxAgepublic int getMaxAge()Description copied from interface:javax.servlet.SessionCookieConfigObtain the maximum age to set for a session cookie.- Specified by:
- getMaxAgein interface- SessionCookieConfig
- Returns:
- the maximum age in seconds
 
- 
getNameDescription copied from interface:javax.servlet.SessionCookieConfigObtain the name to use for the session cookies.- Specified by:
- getNamein interface- SessionCookieConfig
- Returns:
- the name to use for session cookies.
 
- 
getPathDescription copied from interface:javax.servlet.SessionCookieConfigObtain the path to use for session cookies. This is normally the context path.- Specified by:
- getPathin interface- SessionCookieConfig
- Returns:
- The path to use for session cookies.
 
- 
isHttpOnlypublic boolean isHttpOnly()Description copied from interface:javax.servlet.SessionCookieConfigWill session cookies be created with the httpOnly flag set?- Specified by:
- isHttpOnlyin interface- SessionCookieConfig
- Returns:
- trueif the flag should be set, otherwise- false
 
- 
isSecurepublic boolean isSecure()Description copied from interface:javax.servlet.SessionCookieConfigWill session cookies be created with the secure flag set?- Specified by:
- isSecurein interface- SessionCookieConfig
- Returns:
- trueif the flag should be set, otherwise- false
 
- 
setCommentDescription copied from interface:javax.servlet.SessionCookieConfigSets the comment for the session cookie- Specified by:
- setCommentin interface- SessionCookieConfig
- Parameters:
- comment- The session cookie comment
 
- 
setDomainDescription copied from interface:javax.servlet.SessionCookieConfigSets the domain for the session cookie- Specified by:
- setDomainin interface- SessionCookieConfig
- Parameters:
- domain- The session cookie domain
 
- 
setHttpOnlypublic void setHttpOnly(boolean httpOnly) Description copied from interface:javax.servlet.SessionCookieConfigSets the httpOnly flag for the session cookie.- Specified by:
- setHttpOnlyin interface- SessionCookieConfig
- Parameters:
- httpOnly- The httpOnly setting to use for session cookies
 
- 
setMaxAgepublic void setMaxAge(int maxAge) Description copied from interface:javax.servlet.SessionCookieConfigSets the maximum age.- Specified by:
- setMaxAgein interface- SessionCookieConfig
- Parameters:
- maxAge- the maximum age to set
 
- 
setNameDescription copied from interface:javax.servlet.SessionCookieConfigSets the session cookie name.- Specified by:
- setNamein interface- SessionCookieConfig
- Parameters:
- name- The name of the session cookie
 
- 
setPathDescription copied from interface:javax.servlet.SessionCookieConfigSets the path of the session cookie.- Specified by:
- setPathin interface- SessionCookieConfig
- Parameters:
- path- The session cookie path
 
- 
setSecurepublic void setSecure(boolean secure) Description copied from interface:javax.servlet.SessionCookieConfigSets the secure flag for the session cookie.- Specified by:
- setSecurein interface- SessionCookieConfig
- Parameters:
- secure- The secure setting to use for session cookies
 
- 
createSessionCookieCreates a new session cookie for the given session ID- Parameters:
- context- The Context for the web application
- sessionId- The ID of the session for which the cookie will be created
- secure- Should session cookie be configured as secure
- Returns:
- the cookie for the session
 
 
-