Package org.apache.jackrabbit.core
Interface SessionListener
-
- All Known Implementing Classes:
MembershipCache,RepositoryImpl,TransientRepository,UserManagerImpl,UserPerWorkspaceUserManager
public interface SessionListenerTheSessionListenerinterface allows an implementing object to be informed about changes on aSession.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidloggedOut(SessionImpl session)Called when aSessionhas been 'closed' by calling.Session.logout()voidloggingOut(SessionImpl session)Called when aSessionis about to be 'closed' by calling.Session.logout()
-
-
-
Method Detail
-
loggingOut
void loggingOut(SessionImpl session)
Called when aSessionis about to be 'closed' by calling. At this moment the session is still valid.Session.logout()- Parameters:
session- theSessionthat is about to be 'closed'
-
loggedOut
void loggedOut(SessionImpl session)
Called when aSessionhas been 'closed' by calling.Session.logout()- Parameters:
session- theSessionthat has been 'closed'
-
-