| javax.servlet.http.HttpSessionActivationListener
HttpSessionActivationListener | public interface HttpSessionActivationListener extends EventListener(Code) | | Interface for a listener receiving events when a session is
created or displayed.
since: Servlet 2.3 |
sessionDidActivate | public void sessionDidActivate(HttpSessionEvent event)(Code) | | Callback after the session activates.
Parameters: event - the event for the session activation |
sessionWillPassivate | public void sessionWillPassivate(HttpSessionEvent event)(Code) | | Callback before the session passivates.
Parameters: event - the event for the session passivation. |
|
|