Class ConcurrentSessionControlAuthenticationStrategy
- All Implemented Interfaces:
- org.springframework.beans.factory.Aware,- org.springframework.context.MessageSourceAware,- SessionAuthenticationStrategy
 When invoked following an authentication, it will check whether the user in question
 should be allowed to proceed, by comparing the number of sessions they already have
 active with the configured maximumSessions value. The SessionRegistry
 is used as the source of data on authenticated users and session data.
 
 If a user has reached the maximum number of permitted sessions, the behaviour depends
 on the exceptionIfMaxExceeded property. The default behaviour is to expire any
 sessions that exceed the maximum number of permitted sessions, starting with the least
 recently used sessions. The expired sessions will be invalidated by the
 ConcurrentSessionFilter if accessed again. If exceptionIfMaxExceeded
 is set to true, however, the user will be prevented from starting a new
 authenticated session.
 
 This strategy can be injected into both the SessionManagementFilter and
 instances of AbstractAuthenticationProcessingFilter (typically
 UsernamePasswordAuthenticationFilter), but is typically combined with
 RegisterSessionAuthenticationStrategy using
 CompositeSessionAuthenticationStrategy.
 
- Since:
- 3.2
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected org.springframework.context.support.MessageSourceAccessor
- 
Constructor SummaryConstructorsConstructorDescriptionConcurrentSessionControlAuthenticationStrategy(SessionRegistry sessionRegistry) 
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidallowableSessionsExceeded(List<SessionInformation> sessions, int allowableSessions, SessionRegistry registry) Allows subclasses to customise behaviour when too many sessions are detected.protected intgetMaximumSessionsForThisUser(Authentication authentication) Method intended for use by subclasses to override the maximum number of sessions that are permitted for a particular authentication.voidonAuthentication(Authentication authentication, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) In addition to the steps from the superclass, the sessionRegistry will be updated with the new session information.voidsetExceptionIfMaximumExceeded(boolean exceptionIfMaximumExceeded) Sets the exceptionIfMaximumExceeded property, which determines whether the user should be prevented from opening more sessions than allowed.voidsetMaximumSessions(int maximumSessions) Sets the maxSessions property.voidsetMessageSource(org.springframework.context.MessageSource messageSource) Sets theMessageSourceused for reporting errors back to the user when the user has exceeded the maximum number of authentications.
- 
Field Details- 
messagesprotected org.springframework.context.support.MessageSourceAccessor messages
 
- 
- 
Constructor Details- 
ConcurrentSessionControlAuthenticationStrategy- Parameters:
- sessionRegistry- the session registry which should be updated when the authenticated session is changed.
 
 
- 
- 
Method Details- 
onAuthenticationpublic void onAuthentication(Authentication authentication, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) In addition to the steps from the superclass, the sessionRegistry will be updated with the new session information.- Specified by:
- onAuthenticationin interface- SessionAuthenticationStrategy
 
- 
getMaximumSessionsForThisUserMethod intended for use by subclasses to override the maximum number of sessions that are permitted for a particular authentication. The default implementation simply returns themaximumSessionsvalue for the bean.- Parameters:
- authentication- to determine the maximum sessions for
- Returns:
- either -1 meaning unlimited, or a positive integer to limit (never zero)
 
- 
allowableSessionsExceededprotected void allowableSessionsExceeded(List<SessionInformation> sessions, int allowableSessions, SessionRegistry registry) throws SessionAuthenticationException Allows subclasses to customise behaviour when too many sessions are detected.- Parameters:
- sessions- either- nullor all unexpired sessions associated with the principal
- allowableSessions- the number of concurrent sessions the user is allowed to have
- registry- an instance of the- SessionRegistryfor subclass use
- Throws:
- SessionAuthenticationException
 
- 
setExceptionIfMaximumExceededpublic void setExceptionIfMaximumExceeded(boolean exceptionIfMaximumExceeded) Sets the exceptionIfMaximumExceeded property, which determines whether the user should be prevented from opening more sessions than allowed. If set to true, a SessionAuthenticationException will be raised which means the user authenticating will be prevented from authenticating. if set to false, the user that has already authenticated will be forcibly logged out.- Parameters:
- exceptionIfMaximumExceeded- defaults to false.
 
- 
setMaximumSessionspublic void setMaximumSessions(int maximumSessions) Sets the maxSessions property. The default value is 1. Use -1 for unlimited sessions.- Parameters:
- maximumSessions- the maximum number of permitted sessions a user can have open simultaneously.
 
- 
setMessageSourcepublic void setMessageSource(org.springframework.context.MessageSource messageSource) Sets theMessageSourceused for reporting errors back to the user when the user has exceeded the maximum number of authentications.- Specified by:
- setMessageSourcein interface- org.springframework.context.MessageSourceAware
 
 
-