Package org.apache.jackrabbit.jcr2spi
Interface SessionListener
-
- All Known Implementing Classes:
LockManagerImpl
,SessionImporter
public interface SessionListener
TheSessionListener
interface allows an implementing object to be informed about changes on aSession
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
loggedOut(Session session)
Called when aSession
has been 'closed' by calling
.Session.logout()
void
loggingOut(Session session)
Called when aSession
is about to be 'closed' by calling
.Session.logout()
-
-
-
Method Detail
-
loggingOut
void loggingOut(Session session)
Called when aSession
is about to be 'closed' by calling
. At this moment the session is still valid.Session.logout()
- Parameters:
session
- theSession
that is about to be 'closed'
-
loggedOut
void loggedOut(Session session)
Called when aSession
has been 'closed' by calling
.Session.logout()
- Parameters:
session
- theSession
that has been 'closed'
-
-