Class StandardSession
- java.lang.Object
-
- org.apache.catalina.session.StandardSession
-
- All Implemented Interfaces:
jakarta.servlet.http.HttpSession,Serializable,Session
- Direct Known Subclasses:
BaseHASession
public class StandardSession extends Object implements jakarta.servlet.http.HttpSession, Session, Serializable
Standard implementation of the Session interface. This object is serializable, so that it can be stored in persistent storage or transferred to a different JVM for distributable session support.IMPLEMENTATION NOTE: An instance of this class represents both the internal (Session) and application level (HttpSession) view of the session. However, because the class itself is not declared public, Java logic outside of the
org.apache.catalina.sessionpackage cannot cast an HttpSession view of this instance back to a Session view.IMPLEMENTATION NOTE: If you add fields to this class, you must make sure that you carry them over in the read/writeObject methods so that this class is properly serialized.
- Version:
- $Revision: 1.33 $ $Date: 2007/03/12 21:41:52 $
- Author:
- Craig R. McClanahan, Sean Legassick, Jon S. Stevens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected SessionLock_sessionLockprotected Map<String,Object>attributesThe collection of user data attributes associated with this Session.protected StringauthTypeThe authentication type used to authenticate our cached Principal, if any.protected MethodcontainerEventMethodThejava.lang.Methodfor thefireContainerEvent()method of theorg.apache.catalina.core.StandardContextmethod, if our Context implementation is of this class.protected StandardContextcontextThe context with which this Session is associated.protected longcreationTimeThe time this session was created, in milliseconds since midnight, January 1, 1970 GMT.protected intdebugThe debugging detail level for this component.protected static String[]EMPTY_ARRAYType array.protected booleanexpiringWe are currently processing a session expiration, so bypass certain IllegalStateException tests.protected StandardSessionFacadefacadeThe facade associated with this session.protected StringidThe session identifier of this Session.protected static StringinfoDescriptive information describing this Session implementation.protected booleanisNewFlag indicating whether this session is new or not.protected booleanisValidFlag indicating whether this session is valid or not.protected longlastAccessedTimeThe last accessed time for this Session.protected ArrayList<SessionListener>listenersThe session event listeners for this Session.protected ManagermanagerThe Manager with which this Session is associated.protected intmaxInactiveIntervalThe maximum time interval, in seconds, between client requests before the servlet container may invalidate this session.protected static StringNOT_SERIALIZEDThe dummy attribute value serialized when a NotSerializableException is encountered inwriteObject().protected Map<String,Object>notesInternal notes associated with this session by Catalina components and event listeners.protected PrincipalprincipalThe authenticated Principal associated with this session, if any.protected static StringSEPARATE_BUFFER_SERIALIZATIONprotected ObjectsessionLockMonitorprotected StringssoIdsingle sign on id.protected longssoVersionsingle sign on version.protected static StringSYNC_STRINGThe string used in the name for setAttribute and removeAttribute to signify on-demand syncprotected longthisAccessedTimeThe current accessed time for this session.protected static ThreadLocal<Manager>threadContextManagerprotected AtomicLongversionThe session version, incremented and used by in-memory-replicating session managers-
Fields inherited from interface org.apache.catalina.Session
SESSION_CREATED_EVENT, SESSION_DESTROYED_EVENT
-
-
Constructor Summary
Constructors Constructor Description StandardSession(Manager manager)Construct a new Session associated with the specified Manager.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccess()Update the accessed time information for this session.voidactivate()Perform internal processing required to activate this session.voidaddSessionListener(SessionListener listener)Add a session event listener to this component.voidendAccess()End the access.protected voidevaluateIfValid()protected booleanexclude(String name)Exclude attribute that cannot be serialized.voidexpire()Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.voidexpire(boolean notify)Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.voidexpire(boolean notify, boolean persistentRemove)Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.protected voidfireContainerEvent(Context context, String type, Object data)Fire container events if the Context implementation is theorg.apache.catalina.core.StandardContext.voidfireSessionEvent(String type, Object data)Notify all session event listeners that a particular event has occurred for this Session.ObjectgetAttribute(String name)Return the object bound with the specified name in this session, ornullif no object is bound with that name.protected ObjectgetAttributeInternal(String name)Return the value of an attribute without a check for validity.Enumeration<String>getAttributeNames()Return anEnumerationofStringobjects containing the names of the objects bound to this session.protected Enumerator<String>getAttributeNamesInternal()Returns names of attributes even for expired session.Map<String,Object>getAttributes()Gets the attributes of this session.StringgetAuthType()Return the authentication type used to authenticate our cached Principal, if any.StringgetBeKey()Gets the BEKEY of this sessionlonggetCreationTime()Return the time when this session was created, in milliseconds since midnight, January 1, 1970 GMT.StringgetId()Return the session identifier for this session.StringgetIdInternal()Return the session identifier for this session.StringgetInfo()Return descriptive information about this Session implementation and the corresponding version number, in the format<description>/<version>.booleangetIsValid()Return theisValidflag for this session.longgetLastAccessedTime()Return the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT.longgetLastAccessedTimeInternal()Same as getLastAccessedTime(), except that there is no call to isValid(), which may expire the session and cause any subsequent session access to throw an IllegalStateException.ManagergetManager()Return the Manager within which this Session is valid.intgetMaxInactiveInterval()Return the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session.ObjectgetNote(String name)Return the object bound with the specified name to the internal notes for this session, ornullif no such binding exists.Iterator<String>getNoteNames()Return an Iterator containing the String names of all notes bindings that exist for this session.PrincipalgetPrincipal()Return the authenticated Principal that is associated with this Session.jakarta.servlet.ServletContextgetServletContext()Return the ServletContext to which this session belongs.jakarta.servlet.http.HttpSessiongetSession()Return theHttpSessionfor which this object is the facade.SessionLockgetSessionLock()return the Session lockprotected booleangetSessionLockForForeground()get this session locked for foreground if the session is found to be presently background locked; retry logic in a time-decay polling loop waits for background lock to clear after 6 attempts (12.6 seconds) it unlocks the session and acquires the foreground lockStringgetSipApplicationSessionId()Gets the id of the SipApplicationSession that is the parent of this StandardSession.StringgetSsoId()Return the single sign on id.longgetSsoVersion()Return the single sign on version.longgetVersion()Gets the version numberbooleanhasExpired()Checks whether this Session has expired.booleanhasNonHttpLockOccurred()longincrementVersion()Increments the version numbervoidinvalidate()Invalidates this session and unbinds any objects bound to it.booleanisForegroundLocked()return whether this session is currently foreground lockedbooleanisNew()Returntrueif the client does not yet know about the session, or if the client chooses not to join the session.booleanisValid()Expire the expired session if necessary and return theisValidflag for this session.protected String[]keys()Return the names of all currently defined session attributes as an array of Strings.booleanlockBackground()lock the session for foreground returns true if successful; false if unsuccessfulbooleanlockForeground()lock the session for background returns true if successful; false if unsuccessfulprotected voidlog(String message)Log a message on the Logger associated with our Manager (if any).protected voidlog(String message, Throwable t)Log a message on the Logger associated with our Manager (if any).protected voidlog(String message, Level level)Log a message on the Logger associated with our Manager (if any).voidpassivate()Perform the internal processing required to passivate this session.voidrecycle()Release all object references, and initialize instance variables, in preparation for reuse of this object.voidremoveAttribute(String name)Remove the object bound with the specified name from this session.voidremoveAttribute(String name, boolean notify, boolean checkValid)Remove the object bound with the specified name from this session.voidremoveNote(String name)Remove any object bound to the specified name in the internal notes for this session.voidremoveSessionListener(SessionListener listener)Remove a session event listener from this component.voidsetAttribute(String name, Object value)Bind an object to this session, using the specified name.voidsetAuthType(String authType)Set the authentication type used to authenticate our cached Principal, if any.voidsetBeKey(String beKey)Sets the BEKEY for this sessionvoidsetCreationTime(long time)Set the creation time for this session.voidsetId(String id)Set the session identifier for this session.voidsetLastAccessedTime(long lastAcessedTime)Set the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT.voidsetManager(Manager manager)Set the Manager within which this Session is valid.voidsetMaxInactiveInterval(int interval)Set the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session.voidsetNew(boolean isNew)Set theisNewflag for this session.voidsetNote(String name, Object value)Bind an object to a specified name in the internal notes associated with this session, replacing any existing binding for this name.voidsetPrincipal(Principal principal)Set the authenticated Principal that is associated with this Session.voidsetSessionLock(SessionLock sessionLock)set the Session lockvoidsetSipApplicationSessionId(String id)Sets the id of the SipApplicationSession that is the parent of this StandardSession.voidsetSsoId(String ssoId)Set the single sign on id.voidsetSsoVersion(long value)Set the single sign on version.voidsetValid(boolean isValid)Set theisValidflag for this session.voidsetVersion(long value)Sets the version numbervoidtellNew()Inform the listeners about the new session.StringtoString()Return a string representation of this object.voidunlockBackground()unlock the session from backgroundvoidunlockForeground()unlock the session from foregroundvoidunlockForegroundCompletely()unlock the session completely irregardless of whether it was foreground or background locked
-
-
-
Field Detail
-
EMPTY_ARRAY
protected static final String[] EMPTY_ARRAY
Type array.
-
NOT_SERIALIZED
protected static final String NOT_SERIALIZED
The dummy attribute value serialized when a NotSerializableException is encountered inwriteObject().- See Also:
- Constant Field Values
-
SEPARATE_BUFFER_SERIALIZATION
protected static final String SEPARATE_BUFFER_SERIALIZATION
- See Also:
- Constant Field Values
-
SYNC_STRING
protected static final String SYNC_STRING
The string used in the name for setAttribute and removeAttribute to signify on-demand sync- See Also:
- Constant Field Values
-
info
protected static final String info
Descriptive information describing this Session implementation.- See Also:
- Constant Field Values
-
attributes
protected Map<String,Object> attributes
The collection of user data attributes associated with this Session.
-
authType
protected transient String authType
The authentication type used to authenticate our cached Principal, if any. NOTE: This value is not included in the serialized version of this object.
-
containerEventMethod
protected transient Method containerEventMethod
Thejava.lang.Methodfor thefireContainerEvent()method of theorg.apache.catalina.core.StandardContextmethod, if our Context implementation is of this class. This value is computed dynamically the first time it is needed, or after a session reload (since it is declared transient).
-
creationTime
protected long creationTime
The time this session was created, in milliseconds since midnight, January 1, 1970 GMT.
-
debug
protected transient int debug
The debugging detail level for this component. NOTE: This value is not included in the serialized version of this object.
-
expiring
protected transient boolean expiring
We are currently processing a session expiration, so bypass certain IllegalStateException tests. NOTE: This value is not included in the serialized version of this object.
-
facade
protected transient StandardSessionFacade facade
The facade associated with this session. NOTE: This value is not included in the serialized version of this object.
-
id
protected String id
The session identifier of this Session.
-
lastAccessedTime
protected long lastAccessedTime
The last accessed time for this Session.
-
listeners
protected transient ArrayList<SessionListener> listeners
The session event listeners for this Session.
-
manager
protected transient Manager manager
The Manager with which this Session is associated.
-
threadContextManager
protected static final transient ThreadLocal<Manager> threadContextManager
-
context
protected transient StandardContext context
The context with which this Session is associated.
-
maxInactiveInterval
protected int maxInactiveInterval
The maximum time interval, in seconds, between client requests before the servlet container may invalidate this session. A negative time indicates that the session should never time out.
-
isNew
protected boolean isNew
Flag indicating whether this session is new or not.
-
isValid
protected boolean isValid
Flag indicating whether this session is valid or not.
-
notes
protected transient Map<String,Object> notes
Internal notes associated with this session by Catalina components and event listeners. IMPLEMENTATION NOTE: This object is not saved and restored across session serializations!
-
principal
protected transient Principal principal
The authenticated Principal associated with this session, if any. // START SJSWS 6371339 // * IMPLEMENTATION NOTE: This object is not saved and // * restored across session serializations! // END SJSWS 6371339
-
thisAccessedTime
protected long thisAccessedTime
The current accessed time for this session.
-
version
protected AtomicLong version
The session version, incremented and used by in-memory-replicating session managers
-
ssoId
protected String ssoId
single sign on id. It is null if there is no SSO.
-
ssoVersion
protected volatile long ssoVersion
single sign on version.
-
_sessionLock
protected transient SessionLock _sessionLock
-
sessionLockMonitor
protected final Object sessionLockMonitor
-
-
Constructor Detail
-
StandardSession
public StandardSession(Manager manager)
Construct a new Session associated with the specified Manager.- Parameters:
manager- The manager with which this Session is associated
-
-
Method Detail
-
getAuthType
public String getAuthType()
Return the authentication type used to authenticate our cached Principal, if any.- Specified by:
getAuthTypein interfaceSession
-
setAuthType
public void setAuthType(String authType)
Set the authentication type used to authenticate our cached Principal, if any.- Specified by:
setAuthTypein interfaceSession- Parameters:
authType- The new cached authentication type
-
setCreationTime
public void setCreationTime(long time)
Set the creation time for this session. This method is called by the Manager when an existing Session instance is reused.- Specified by:
setCreationTimein interfaceSession- Parameters:
time- The new creation time
-
getId
public String getId()
Return the session identifier for this session.
-
getIdInternal
public String getIdInternal()
Return the session identifier for this session.- Specified by:
getIdInternalin interfaceSession
-
setId
public void setId(String id)
Set the session identifier for this session.
-
setBeKey
public void setBeKey(String beKey)
Sets the BEKEY for this sessionThe BEKEY is used by the Converged Loadbalancer (CLB) in DCR mode for loadbalancing purposes, and supplied to the web container in the form of a request header.
- Parameters:
beKey- the BEKEY for this session, or null if not present
-
getBeKey
public String getBeKey()
Gets the BEKEY of this session- Returns:
- the BEKEY of this session, or null if not present
-
setSipApplicationSessionId
public void setSipApplicationSessionId(String id)
Sets the id of the SipApplicationSession that is the parent of this StandardSession.- Parameters:
id- SipApplicationSession id
-
getSipApplicationSessionId
public String getSipApplicationSessionId()
Gets the id of the SipApplicationSession that is the parent of this StandardSession.- Returns:
- The SipApplicationSession id, or null if this StandardSession does not have any SipApplicationSession parent
-
tellNew
public void tellNew()
Inform the listeners about the new session.
-
getInfo
public String getInfo()
Return descriptive information about this Session implementation and the corresponding version number, in the format<description>/<version>.
-
getLastAccessedTime
public long getLastAccessedTime()
Return the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT. Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time.- Specified by:
getLastAccessedTimein interfacejakarta.servlet.http.HttpSession- Specified by:
getLastAccessedTimein interfaceSession
-
getLastAccessedTimeInternal
public long getLastAccessedTimeInternal()
Same as getLastAccessedTime(), except that there is no call to isValid(), which may expire the session and cause any subsequent session access to throw an IllegalStateException.
-
setLastAccessedTime
public void setLastAccessedTime(long lastAcessedTime)
Set the last time the client sent a request associated with this session, as the number of milliseconds since midnight, January 1, 1970 GMT. Actions that your application takes, such as getting or setting a value associated with the session, do not affect the access time. HERCULES: added method
-
getManager
public Manager getManager()
Return the Manager within which this Session is valid.- Specified by:
getManagerin interfaceSession
-
setManager
public void setManager(Manager manager)
Set the Manager within which this Session is valid.- Specified by:
setManagerin interfaceSession- Parameters:
manager- The new Manager
-
getMaxInactiveInterval
public int getMaxInactiveInterval()
Return the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session. A negative time indicates that the session should never time out.- Specified by:
getMaxInactiveIntervalin interfacejakarta.servlet.http.HttpSession- Specified by:
getMaxInactiveIntervalin interfaceSession
-
setMaxInactiveInterval
public void setMaxInactiveInterval(int interval)
Set the maximum time interval, in seconds, between client requests before the servlet container will invalidate the session. A negative time indicates that the session should never time out.- Specified by:
setMaxInactiveIntervalin interfacejakarta.servlet.http.HttpSession- Specified by:
setMaxInactiveIntervalin interfaceSession- Parameters:
interval- The new maximum interval
-
setNew
public void setNew(boolean isNew)
Set theisNewflag for this session.
-
getPrincipal
public Principal getPrincipal()
Return the authenticated Principal that is associated with this Session. This provides anAuthenticatorwith a means to cache a previously authenticated Principal, and avoid potentially expensiveRealm.authenticate()calls on every request. If there is no current associated Principal, returnnull.- Specified by:
getPrincipalin interfaceSession- Returns:
-
setPrincipal
public void setPrincipal(Principal principal)
Set the authenticated Principal that is associated with this Session. This provides anAuthenticatorwith a means to cache a previously authenticated Principal, and avoid potentially expensiveRealm.authenticate()calls on every request.- Specified by:
setPrincipalin interfaceSession- Parameters:
principal- The new Principal, ornullif none
-
getSession
public jakarta.servlet.http.HttpSession getSession()
Return theHttpSessionfor which this object is the facade.- Specified by:
getSessionin interfaceSession
-
isValid
public boolean isValid()
Description copied from interface:SessionExpire the expired session if necessary and return theisValidflag for this session.
-
getIsValid
public boolean getIsValid()
Description copied from interface:SessionReturn theisValidflag for this session.- Specified by:
getIsValidin interfaceSession
-
setValid
public void setValid(boolean isValid)
Set theisValidflag for this session.
-
access
public void access()
Update the accessed time information for this session. This method should be called by the context when a request comes in for a particular session, even if the application does not reference it.
-
addSessionListener
public void addSessionListener(SessionListener listener)
Add a session event listener to this component.- Specified by:
addSessionListenerin interfaceSession
-
expire
public void expire()
Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.
-
expire
public void expire(boolean notify)
Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.- Parameters:
notify- Should we notify listeners about the demise of this session?
-
expire
public void expire(boolean notify, boolean persistentRemove)Perform the internal processing required to invalidate this session, without triggering an exception if the session has already expired.- Parameters:
notify- Should we notify listeners about the demise of this session?persistentRemove- should we call store to remove the session if available
-
passivate
public void passivate()
Perform the internal processing required to passivate this session.
-
activate
public void activate()
Perform internal processing required to activate this session.
-
getNote
public Object getNote(String name)
Return the object bound with the specified name to the internal notes for this session, ornullif no such binding exists.
-
getNoteNames
public Iterator<String> getNoteNames()
Return an Iterator containing the String names of all notes bindings that exist for this session.- Specified by:
getNoteNamesin interfaceSession
-
recycle
public void recycle()
Release all object references, and initialize instance variables, in preparation for reuse of this object.
-
removeNote
public void removeNote(String name)
Remove any object bound to the specified name in the internal notes for this session.- Specified by:
removeNotein interfaceSession- Parameters:
name- Name of the note to be removed
-
removeSessionListener
public void removeSessionListener(SessionListener listener)
Remove a session event listener from this component.- Specified by:
removeSessionListenerin interfaceSession
-
setNote
public void setNote(String name, Object value)
Bind an object to a specified name in the internal notes associated with this session, replacing any existing binding for this name.
-
hasExpired
public boolean hasExpired()
Checks whether this Session has expired.- Specified by:
hasExpiredin interfaceSession- Returns:
- true if this Session has expired, false otherwise
-
incrementVersion
public long incrementVersion()
Increments the version number
-
getVersion
public long getVersion()
Gets the version number- Specified by:
getVersionin interfaceSession
-
setVersion
public void setVersion(long value)
Sets the version number
-
getSsoId
public String getSsoId()
Return the single sign on id. It is null if there is no SSO.
-
setSsoId
public void setSsoId(String ssoId)
Set the single sign on id.
-
getSsoVersion
public long getSsoVersion()
Return the single sign on version.- Specified by:
getSsoVersionin interfaceSession
-
setSsoVersion
public void setSsoVersion(long value)
Set the single sign on version.- Specified by:
setSsoVersionin interfaceSession
-
toString
public String toString()
Return a string representation of this object.
-
getCreationTime
public long getCreationTime()
Return the time when this session was created, in milliseconds since midnight, January 1, 1970 GMT.- Specified by:
getCreationTimein interfacejakarta.servlet.http.HttpSession- Specified by:
getCreationTimein interfaceSession- Throws:
IllegalStateException- if this method is called on an invalidated session
-
getServletContext
public jakarta.servlet.ServletContext getServletContext()
Return the ServletContext to which this session belongs.- Specified by:
getServletContextin interfacejakarta.servlet.http.HttpSession
-
getAttribute
public Object getAttribute(String name)
Return the object bound with the specified name in this session, ornullif no object is bound with that name.- Specified by:
getAttributein interfacejakarta.servlet.http.HttpSession- Parameters:
name- Name of the attribute to be returned- Throws:
IllegalStateException- if this method is called on an invalidated session
-
getAttributes
public Map<String,Object> getAttributes()
Description copied from interface:SessionGets the attributes of this session.- Specified by:
getAttributesin interfaceSession- Returns:
- the attributes of this session
-
getAttributeNames
public Enumeration<String> getAttributeNames()
Return anEnumerationofStringobjects containing the names of the objects bound to this session.- Specified by:
getAttributeNamesin interfacejakarta.servlet.http.HttpSession- Throws:
IllegalStateException- if this method is called on an invalidated session
-
getAttributeNamesInternal
protected Enumerator<String> getAttributeNamesInternal()
Returns names of attributes even for expired session.- Returns:
- names of attributes ignoring state of session
-
getSessionLockForForeground
protected boolean getSessionLockForForeground()
get this session locked for foreground if the session is found to be presently background locked; retry logic in a time-decay polling loop waits for background lock to clear after 6 attempts (12.6 seconds) it unlocks the session and acquires the foreground lock
-
isForegroundLocked
public boolean isForegroundLocked()
return whether this session is currently foreground locked
-
lockBackground
public boolean lockBackground()
lock the session for foreground returns true if successful; false if unsuccessful
-
lockForeground
public boolean lockForeground()
lock the session for background returns true if successful; false if unsuccessful- Specified by:
lockForegroundin interfaceSession
-
unlockForegroundCompletely
public void unlockForegroundCompletely()
unlock the session completely irregardless of whether it was foreground or background locked
-
unlockForeground
public void unlockForeground()
unlock the session from foreground- Specified by:
unlockForegroundin interfaceSession
-
unlockBackground
public void unlockBackground()
unlock the session from background
-
getSessionLock
public SessionLock getSessionLock()
return the Session lock
-
setSessionLock
public void setSessionLock(SessionLock sessionLock)
set the Session lock- Parameters:
sessionLock-
-
hasNonHttpLockOccurred
public boolean hasNonHttpLockOccurred()
- Returns:
- true if this session has been locked by any out-of-band (i.e., non-http) request, false otherwise
-
invalidate
public void invalidate()
Invalidates this session and unbinds any objects bound to it.- Specified by:
invalidatein interfacejakarta.servlet.http.HttpSession- Throws:
IllegalStateException- if this method is called on an invalidated session HERCULES:modified method
-
isNew
public boolean isNew()
Returntrueif the client does not yet know about the session, or if the client chooses not to join the session. For example, if the server used only cookie-based sessions, and the client has disabled the use of cookies, then a session would be new on each request.- Specified by:
isNewin interfacejakarta.servlet.http.HttpSession- Throws:
IllegalStateException- if this method is called on an invalidated session
-
removeAttribute
public void removeAttribute(String name)
Remove the object bound with the specified name from this session. If the session does not have an object bound with this name, this method does nothing.After this method executes, and if the object implements
HttpSessionBindingListener, the container callsvalueUnbound()on the object.- Specified by:
removeAttributein interfacejakarta.servlet.http.HttpSession- Parameters:
name- Name of the object to remove from this session.- Throws:
IllegalStateException- if this method is called on an invalidated session
-
removeAttribute
public void removeAttribute(String name, boolean notify, boolean checkValid)
Remove the object bound with the specified name from this session. If the session does not have an object bound with this name, this method does nothing.After this method executes, and if the object implements
HttpSessionBindingListener, the container callsvalueUnbound()on the object.- Parameters:
name- Name of the object to remove from this session.notify- Should we notify interested listeners that this attribute is being removed?checkValid- Indicates whether IllegalStateException must be thrown if session has already been invalidated- Throws:
IllegalStateException- if this method is called on an invalidated session
-
setAttribute
public void setAttribute(String name, Object value)
Bind an object to this session, using the specified name. If an object of the same name is already bound to this session, the object is replaced.After this method executes, and if the object implements
HttpSessionBindingListener, the container callsvalueBound()on the object.- Specified by:
setAttributein interfacejakarta.servlet.http.HttpSession- Parameters:
name- Name to which the object is bound, cannot be nullvalue- Object to be bound, cannot be null- Throws:
IllegalArgumentException- if an attempt is made to add a non-serializable object in an environment marked distributable.IllegalStateException- if this method is called on an invalidated session
-
exclude
protected boolean exclude(String name)
Exclude attribute that cannot be serialized.- Parameters:
name- the attribute's name
-
evaluateIfValid
protected void evaluateIfValid()
-
fireContainerEvent
protected void fireContainerEvent(Context context, String type, Object data) throws Exception
Fire container events if the Context implementation is theorg.apache.catalina.core.StandardContext.- Parameters:
context- Context for which to fire eventstype- Event typedata- Event data- Throws:
Exception- occurred during event firing
-
fireSessionEvent
public void fireSessionEvent(String type, Object data)
Notify all session event listeners that a particular event has occurred for this Session. The default implementation performs this notification synchronously using the calling thread.- Parameters:
type- Event typedata- Event data
-
keys
protected String[] keys()
Return the names of all currently defined session attributes as an array of Strings. If there are no defined attributes, a zero-length array is returned.
-
getAttributeInternal
protected Object getAttributeInternal(String name)
Return the value of an attribute without a check for validity.
-
log
protected void log(String message)
Log a message on the Logger associated with our Manager (if any).- Parameters:
message- Message to be logged
-
log
protected void log(String message, Throwable t)
Log a message on the Logger associated with our Manager (if any).- Parameters:
message- Message to be loggedt- Associated exception
-
-