Uses of Class
de.hybris.platform.servicelayer.user.exceptions.PasswordEncoderNotFoundException
Packages that use PasswordEncoderNotFoundException
-
Uses of PasswordEncoderNotFoundException in de.hybris.platform.servicelayer.user
Methods in de.hybris.platform.servicelayer.user that throw PasswordEncoderNotFoundExceptionModifier and TypeMethodDescriptionTries to decodes from the givenuserthe encoded password based on the encoding set to the user.Encodes the givenplainTextPasswordwith the corresponding PasswordEncoder (based on thepasswordEncoding) and returns it.UserService.getPassword(UserModel user) Returns for the given user the decoded password if this is possible.UserService.getPassword(String userId) If possible returns the decoded password from the given user.voidUserService.setPassword(UserModel user, String plainPassword) Encodes the given plain text password with the user's password encoding (using the default encoding if the user doesn't have one) and set the encoded password to the given user.voidUserService.setPassword(UserModel user, String plainPassword, String encoding) Encodes the given plain text password with the given password encoding and set the encoded password to the given user.voidUserService.setPassword(String userId, String password) Encodes the given plain text password with the default password encoding and set the encoded password to the given user.voidUserService.setPassword(String userId, String password, String encoding) Sets the password according to the givenencodingfor the given user id.voidUserService.setPasswordWithDefaultEncoding(UserModel user, String plainPassword) Encodes the given plain text password with the default password encoding and set the encoded password to the given user. -
Uses of PasswordEncoderNotFoundException in de.hybris.platform.servicelayer.user.impl
Methods in de.hybris.platform.servicelayer.user.impl that throw PasswordEncoderNotFoundExceptionModifier and TypeMethodDescriptionDefaulPasswordEncoderService.encode(UserModel user, String plainTextPassword, String passwordEncoding) DefaultUserService.getPassword(UserModel user) DefaultUserService.getPassword(String userId) voidDefaultUserService.setPassword(UserModel user, String plainPassword) voidDefaultUserService.setPassword(String userId, String password) voidDefaultUserService.setPassword(String userId, String password, String encoding) voidDefaultUserService.setPasswordWithDefaultEncoding(UserModel user, String plainPassword)