Package org.eclnt.jsfserver.util
Interface IHttpSessionListener
- All Known Subinterfaces:
IHttpSessionListener2
public interface IHttpSessionListener
Interface notifying abaout creation/closing of http session. You may
add/remove instances by calling
There is a second version of this interface
HttpSessionAccess.addGlobalHttpSessionListener(IHttpSessionListener)
and
HttpSessionAccess.removeGlobalHttpSessionListener(IHttpSessionListener)
.
There is a second version of this interface
IHttpSessionListener2
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
reactOnSessionClosed
(javax.servlet.http.HttpSessionEvent event) void
reactOnSessionCreated
(javax.servlet.http.HttpSessionEvent event)
-
Method Details
-
reactOnSessionCreated
void reactOnSessionCreated(javax.servlet.http.HttpSessionEvent event) -
reactOnSessionClosed
void reactOnSessionClosed(javax.servlet.http.HttpSessionEvent event)
-