Package org.apache.wicket.session
Class HttpSessionStore.SessionBindingListener
- java.lang.Object
-
- org.apache.wicket.session.HttpSessionStore.SessionBindingListener
-
- All Implemented Interfaces:
java.io.Serializable,java.util.EventListener,javax.servlet.http.HttpSessionBindingListener
- Enclosing class:
- HttpSessionStore
protected static final class HttpSessionStore.SessionBindingListener extends java.lang.Object implements javax.servlet.http.HttpSessionBindingListener, java.io.SerializableReacts on unbinding from the session by cleaning up the session related data.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SessionBindingListener(java.lang.String applicationKey, Session wicketSession)Construct.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidvalueBound(javax.servlet.http.HttpSessionBindingEvent evg)voidvalueUnbound(javax.servlet.http.HttpSessionBindingEvent evt)
-
-
-
Constructor Detail
-
SessionBindingListener
public SessionBindingListener(java.lang.String applicationKey, Session wicketSession)Construct.- Parameters:
applicationKey- The unique key of the application within this web applicationwicketSession- The Wicket Session associated with the expiring http session
-
-
Method Detail
-
valueBound
public void valueBound(javax.servlet.http.HttpSessionBindingEvent evg)
- Specified by:
valueBoundin interfacejavax.servlet.http.HttpSessionBindingListener
-
valueUnbound
public void valueUnbound(javax.servlet.http.HttpSessionBindingEvent evt)
- Specified by:
valueUnboundin interfacejavax.servlet.http.HttpSessionBindingListener
-
-