Package org.apache.catalina.core
Class ApplicationSessionCookieConfig
- java.lang.Object
-
- org.apache.catalina.core.ApplicationSessionCookieConfig
-
- All Implemented Interfaces:
SessionCookieConfig
public class ApplicationSessionCookieConfig extends java.lang.Object implements SessionCookieConfig
-
-
Constructor Summary
Constructors Constructor Description ApplicationSessionCookieConfig(StandardContext context)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CookiecreateSessionCookie(Context context, java.lang.String sessionId, boolean secure)Creates a new session cookie for the given session IDjava.lang.StringgetComment()java.lang.StringgetDomain()intgetMaxAge()java.lang.StringgetName()java.lang.StringgetPath()booleanisHttpOnly()booleanisSecure()voidsetComment(java.lang.String comment)Sets the comment for the session cookievoidsetDomain(java.lang.String domain)Sets the domain for the session cookievoidsetHttpOnly(boolean httpOnly)Sets the httpOnly flag for the session cookie.voidsetMaxAge(int maxAge)Sets the maximum age.voidsetName(java.lang.String name)Sets the session cookie name.voidsetPath(java.lang.String path)Sets the path of the session cookie.voidsetSecure(boolean secure)Sets the secure flag for the session cookie.
-
-
-
Constructor Detail
-
ApplicationSessionCookieConfig
public ApplicationSessionCookieConfig(StandardContext context)
-
-
Method Detail
-
getComment
public java.lang.String getComment()
- Specified by:
getCommentin interfaceSessionCookieConfig
-
getDomain
public java.lang.String getDomain()
- Specified by:
getDomainin interfaceSessionCookieConfig
-
getMaxAge
public int getMaxAge()
- Specified by:
getMaxAgein interfaceSessionCookieConfig
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceSessionCookieConfig
-
getPath
public java.lang.String getPath()
- Specified by:
getPathin interfaceSessionCookieConfig
-
isHttpOnly
public boolean isHttpOnly()
- Specified by:
isHttpOnlyin interfaceSessionCookieConfig
-
isSecure
public boolean isSecure()
- Specified by:
isSecurein interfaceSessionCookieConfig
-
setComment
public void setComment(java.lang.String comment)
Description copied from interface:javax.servlet.SessionCookieConfigSets the comment for the session cookie- Specified by:
setCommentin interfaceSessionCookieConfig- Parameters:
comment- The session cookie comment
-
setDomain
public void setDomain(java.lang.String domain)
Description copied from interface:javax.servlet.SessionCookieConfigSets the domain for the session cookie- Specified by:
setDomainin interfaceSessionCookieConfig- Parameters:
domain- The session cookie domain
-
setHttpOnly
public void setHttpOnly(boolean httpOnly)
Description copied from interface:javax.servlet.SessionCookieConfigSets the httpOnly flag for the session cookie.- Specified by:
setHttpOnlyin interfaceSessionCookieConfig- Parameters:
httpOnly- The httpOnly setting to use for session cookies
-
setMaxAge
public void setMaxAge(int maxAge)
Description copied from interface:javax.servlet.SessionCookieConfigSets the maximum age.- Specified by:
setMaxAgein interfaceSessionCookieConfig- Parameters:
maxAge- the maximum age to set
-
setName
public void setName(java.lang.String name)
Description copied from interface:javax.servlet.SessionCookieConfigSets the session cookie name.- Specified by:
setNamein interfaceSessionCookieConfig- Parameters:
name- The name of the session cookie
-
setPath
public void setPath(java.lang.String path)
Description copied from interface:javax.servlet.SessionCookieConfigSets the path of the session cookie.- Specified by:
setPathin interfaceSessionCookieConfig- Parameters:
path- The session cookie path
-
setSecure
public void setSecure(boolean secure)
Description copied from interface:javax.servlet.SessionCookieConfigSets the secure flag for the session cookie.- Specified by:
setSecurein interfaceSessionCookieConfig- Parameters:
secure- The secure setting to use for session cookies
-
createSessionCookie
public static Cookie createSessionCookie(Context context, java.lang.String sessionId, boolean secure)
Creates a new session cookie for the given session ID- Parameters:
context- The Context for the web applicationsessionId- The ID of the session for which the cookie will be createdsecure- Should session cookie be configured as secure- Returns:
- the cookie for the session
-
-