Package org.apache.wicket.session
Interface ISessionStore.BindListener
-
- Enclosing interface:
- ISessionStore
public static interface ISessionStore.BindListener
Listener invoked when session is bound.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bindingSession(Request request, Session newSession)
Informs the listener that a session is about to be bound.
-
-
-
Method Detail
-
bindingSession
void bindingSession(Request request, Session newSession)
Informs the listener that a session is about to be bound. Note that this method is also called fortemporary sessions
.- Parameters:
request
- The request the session is bound innewSession
- The session that will be bound
-
-