Class InMemoryUserDetailsManager
java.lang.Object
org.springframework.security.provisioning.InMemoryUserDetailsManager
- All Implemented Interfaces:
UserDetailsPasswordService
,UserDetailsService
,UserDetailsManager
public class InMemoryUserDetailsManager
extends Object
implements UserDetailsManager, UserDetailsPasswordService
Non-persistent implementation of
UserDetailsManager
which is backed by an
in-memory map.
Mainly intended for testing and demonstration purposes, where a full blown persistent system isn't required.
- Since:
- 3.1
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
changePassword
(String oldPassword, String newPassword) Modify the current user's password.void
createUser
(UserDetails user) Create a new user with the supplied details.void
deleteUser
(String username) Remove the user with the given login name from the system.loadUserByUsername
(String username) Locates the user based on the username.void
setAuthenticationManager
(AuthenticationManager authenticationManager) void
setSecurityContextHolderStrategy
(SecurityContextHolderStrategy securityContextHolderStrategy) Sets theSecurityContextHolderStrategy
to use.updatePassword
(UserDetails user, String newPassword) Modify the specified user's password.void
updateUser
(UserDetails user) Update the specified user.boolean
userExists
(String username) Check if a user with the supplied login name exists in the system.
-
Field Details
-
logger
protected final org.apache.commons.logging.Log logger
-
-
Constructor Details
-
InMemoryUserDetailsManager
public InMemoryUserDetailsManager() -
InMemoryUserDetailsManager
-
InMemoryUserDetailsManager
-
InMemoryUserDetailsManager
-
-
Method Details
-
createUser
Description copied from interface:UserDetailsManager
Create a new user with the supplied details.- Specified by:
createUser
in interfaceUserDetailsManager
-
deleteUser
Description copied from interface:UserDetailsManager
Remove the user with the given login name from the system.- Specified by:
deleteUser
in interfaceUserDetailsManager
-
updateUser
Description copied from interface:UserDetailsManager
Update the specified user.- Specified by:
updateUser
in interfaceUserDetailsManager
-
userExists
Description copied from interface:UserDetailsManager
Check if a user with the supplied login name exists in the system.- Specified by:
userExists
in interfaceUserDetailsManager
-
changePassword
Description copied from interface:UserDetailsManager
Modify the current user's password. This should change the user's password in the persistent user repository (database, LDAP etc).- Specified by:
changePassword
in interfaceUserDetailsManager
- Parameters:
oldPassword
- current password (for re-authentication if required)newPassword
- the password to change to
-
updatePassword
Description copied from interface:UserDetailsPasswordService
Modify the specified user's password. This should change the user's password in the persistent user repository (database, LDAP etc).- Specified by:
updatePassword
in interfaceUserDetailsPasswordService
- Parameters:
user
- the user to modify the password fornewPassword
- the password to change to, encoded by the configuredPasswordEncoder
- Returns:
- the updated UserDetails with the new password
-
loadUserByUsername
Description copied from interface:UserDetailsService
Locates the user based on the username. In the actual implementation, the search may possibly be case sensitive, or case insensitive depending on how the implementation instance is configured. In this case, theUserDetails
object that comes back may have a username that is of a different case than what was actually requested..- Specified by:
loadUserByUsername
in interfaceUserDetailsService
- Parameters:
username
- the username identifying the user whose data is required.- Returns:
- a fully populated user record (never
null
) - Throws:
UsernameNotFoundException
- if the user could not be found or the user has no GrantedAuthority
-
setSecurityContextHolderStrategy
public void setSecurityContextHolderStrategy(SecurityContextHolderStrategy securityContextHolderStrategy) Sets theSecurityContextHolderStrategy
to use. The default action is to use theSecurityContextHolderStrategy
stored inSecurityContextHolder
.- Since:
- 5.8
-
setAuthenticationManager
-