Uses of Interface
io.inverno.mod.security.authentication.password.PasswordPolicy
Packages that use PasswordPolicy
Package
Description
Inverno security password API.
Inverno security user provisioning API.
-
Uses of PasswordPolicy in io.inverno.mod.security.authentication.password
Classes in io.inverno.mod.security.authentication.password that implement PasswordPolicyModifier and TypeClassDescriptionclassSimplePasswordPolicy<A extends LoginCredentials>A simple password policy that simply checks for password's length. -
Uses of PasswordPolicy in io.inverno.mod.security.authentication.user
Methods in io.inverno.mod.security.authentication.user that return PasswordPolicyModifier and TypeMethodDescriptionPasswordPolicy<B, ?> InMemoryUserRepository.getPasswordPolicy()Returns the password policy used to verify passwords.PasswordPolicy<B, ?> RedisUserRepository.getPasswordPolicy()Returns the password policy used to verify passwords.Methods in io.inverno.mod.security.authentication.user with parameters of type PasswordPolicyModifier and TypeMethodDescriptionInMemoryUserRepository.Builder.passwordPolicy(PasswordPolicy<B, ?> passwordPolicy) Specifies the password policy.Constructors in io.inverno.mod.security.authentication.user with parameters of type PasswordPolicyModifierConstructorDescriptionInMemoryUserRepository(Collection<B> users, Password.Encoder<?, ?> passwordEncoder, PasswordPolicy<B, ?> passwordPolicy) Creates an in-memory user repository initialized with the specified list of users using the specified password encoder and policy.RedisUserRepository(RedisClient<String, String> redisClient, com.fasterxml.jackson.databind.ObjectMapper mapper, Password.Encoder<?, ?> passwordEncoder, PasswordPolicy<B, ?> passwordPolicy) Creates a Redis user repository with the specified Redis client, mapper, password encoder and password policy.RedisUserRepository(RedisClient<String, String> redisClient, com.fasterxml.jackson.databind.ObjectMapper mapper, PasswordPolicy<B, ?> passwordPolicy) Creates a Redis user repository with the specified Redis client, mapper and password policy.