org.apache.jackrabbit.core
Interface SessionListener

All Known Implementing Classes:
RepositoryImpl, TransientRepository

public interface SessionListener

The SessionListener interface allows an implementing object to be informed about changes on a Session.

See Also:
SessionImpl.addListener(org.apache.jackrabbit.core.SessionListener)

Method Summary
 void loggedOut(SessionImpl session)
          Called when a Session has been 'closed' by calling Session.logout()
 void loggingOut(SessionImpl session)
          Called when a Session is about to be 'closed' by calling Session.logout()
 

Method Detail

loggingOut

public void loggingOut(SessionImpl session)
Called when a Session is about to be 'closed' by calling Session.logout()
Parameters:
session - the Session that is about to be 'closed'

loggedOut

public void loggedOut(SessionImpl session)
Called when a Session has been 'closed' by calling Session.logout()
Parameters:
session - the Session that has been 'closed'


Copyright © 2004-2006 The Apache Software Foundation. All Rights Reserved.