Package org.apache.jackrabbit.core
Interface SessionListener
-
- All Known Implementing Classes:
MembershipCache
,RepositoryImpl
,TransientRepository
,UserManagerImpl
,UserPerWorkspaceUserManager
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(SessionImpl session)
Called when aSession
has been 'closed' by calling
.Session.logout()
void
loggingOut(SessionImpl session)
Called when aSession
is about to be 'closed' by calling
.Session.logout()
-
-
-
Method Detail
-
loggingOut
void loggingOut(SessionImpl 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(SessionImpl session)
Called when aSession
has been 'closed' by calling
.Session.logout()
- Parameters:
session
- theSession
that has been 'closed'
-
-