Package com.avoka.fc.core.security
Class AccountSaltSource
- java.lang.Object
-
- com.avoka.fc.core.security.AccountSaltSource
-
- All Implemented Interfaces:
org.springframework.security.authentication.dao.SaltSource
public class AccountSaltSource extends Object implements org.springframework.security.authentication.dao.SaltSource
Provide a UserAccount password salt source.
-
-
Constructor Summary
Constructors Constructor Description AccountSaltSource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getSalt(org.springframework.security.core.userdetails.UserDetails userDetails)
Return the password salt for the given user details object.
-
-
-
Method Detail
-
getSalt
public Object getSalt(org.springframework.security.core.userdetails.UserDetails userDetails)
Return the password salt for the given user details object.- Specified by:
getSalt
in interfaceorg.springframework.security.authentication.dao.SaltSource
- Parameters:
userDetails
- the user details object- Returns:
- the password salt for the given user details object
- See Also:
SaltSource.getSalt(UserDetails)
-
-