Package org.apache.wicket
Class SessionListenerCollection
- java.lang.Object
-
- org.apache.wicket.util.listener.ListenerCollection<ISessionListener>
-
- org.apache.wicket.SessionListenerCollection
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<ISessionListener>,ISessionListener
public class SessionListenerCollection extends org.apache.wicket.util.listener.ListenerCollection<ISessionListener> implements ISessionListener
ListenerCollectionforISessionListeners- Author:
- igor
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SessionListenerCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonCreated(Session session)Called when a new instance of session is createdvoidonUnbound(java.lang.String sessionId)Informs the listener that session with specific id has been unbound.-
Methods inherited from class org.apache.wicket.util.listener.ListenerCollection
add, isAllowingDuplicates, isAllowingNulls, iterator, notify, notifyIgnoringExceptions, remove, reversedNotify, reversedNotifyIgnoringExceptions
-
-
-
-
Method Detail
-
onCreated
public void onCreated(Session session)
Description copied from interface:ISessionListenerCalled when a new instance of session is created- Specified by:
onCreatedin interfaceISessionListener
-
onUnbound
public void onUnbound(java.lang.String sessionId)
Description copied from interface:ISessionListenerInforms the listener that session with specific id has been unbound.- Specified by:
onUnboundin interfaceISessionListener- Parameters:
sessionId- the id of the unbound session
-
-