-
Type:
New Feature
-
Status: Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.2.1
-
Fix Version/s: None
-
Component/s: Authentication (log-in)
-
Labels:
A usual requirement is to limit the number of users that can be simultaneously logged in using the same credentials (or invalidate previous sessions)
Even you can find a possible implementation in https://kenai.com/projects/shirospring I think that it is important to add it as standard
As a reference, spring security implements it with the max-sessions="1" attribute
<security:concurrent-session-control
max-sessions="1" exception-if-maximum-exceeded="true" expired-url="/login" />