Interface PasswordStrengthCheckResult
-
- All Known Implementing Classes:
SimplePasswordStrengthCheckResult
public interface PasswordStrengthCheckResultRepresents strength check result.- Author:
- baranowb, Darran Lofthouse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PasswordRestriction>getPassedRestrictions()List of restrictions that password did met.List<PasswordValidationException>getRestrictionFailures()List of restrictions that password did not met.PasswordStrengthgetStrength()Password strength.
-
-
-
Method Detail
-
getRestrictionFailures
List<PasswordValidationException> getRestrictionFailures()
List of restrictions that password did not met.- Returns:
-
getStrength
PasswordStrength getStrength()
Password strength.- Returns:
-
getPassedRestrictions
List<PasswordRestriction> getPassedRestrictions()
List of restrictions that password did met.- Returns:
-
-