Spring Security Framework

Uses of Interface
org.springframework.security.concurrent.SessionRegistry

Packages that use SessionRegistry
org.springframework.security.concurrent Concurrent session control and registration classes. 
org.springframework.security.ui Authentication processing mechanisms, which respond to the submission of authentication credentials using various protocols (eg BASIC, CAS, form login etc). 
org.springframework.security.util General utility classes used throughout the Spring Security framework. 
 

Uses of SessionRegistry in org.springframework.security.concurrent
 

Classes in org.springframework.security.concurrent that implement SessionRegistry
 class SessionRegistryImpl
          Base implementation of SessionRegistry which also listens for HttpSessionDestroyedEvents published in the Spring application context.
 

Methods in org.springframework.security.concurrent that return SessionRegistry
 SessionRegistry ConcurrentSessionControllerImpl.getSessionRegistry()
           
 

Methods in org.springframework.security.concurrent with parameters of type SessionRegistry
protected  void ConcurrentSessionControllerImpl.allowableSessionsExceeded(String sessionId, SessionInformation[] sessions, int allowableSessions, SessionRegistry registry)
          Allows subclasses to customise behaviour when too many sessions are detected.
 void ConcurrentSessionFilter.setSessionRegistry(SessionRegistry sessionRegistry)
           
 void ConcurrentSessionControllerImpl.setSessionRegistry(SessionRegistry sessionRegistry)
           
 

Uses of SessionRegistry in org.springframework.security.ui
 

Methods in org.springframework.security.ui with parameters of type SessionRegistry
 void SessionFixationProtectionFilter.setSessionRegistry(SessionRegistry sessionRegistry)
           
 void AbstractProcessingFilter.setSessionRegistry(SessionRegistry sessionRegistry)
          The session registry needs to be set if session fixation attack protection is in use (and concurrent session control is enabled).
 

Uses of SessionRegistry in org.springframework.security.util
 

Methods in org.springframework.security.util with parameters of type SessionRegistry
static void SessionUtils.startNewSessionIfRequired(HttpServletRequest request, boolean migrateAttributes, SessionRegistry sessionRegistry)
           
 


Spring Security Framework

Copyright © 2004-2010 SpringSource, Inc. All Rights Reserved.