PasswordChecker.Factory |
PasswordChecker.Factory.addCharGroup(String charGroup) |
Add a group of allowed characters in the composition of the password.
|
PasswordChecker.Factory |
PasswordChecker.Factory.addCharGroup(String charGroup,
int minCount) |
Add a group of allowed characters in the composition of the password and specifies a minimum character
count.
|
PasswordChecker.Factory |
PasswordChecker.Factory.addCharGroup(String charGroup,
int minCount,
int maxCount) |
Add a group of allowed characters in the composition of the password and specifies a minimum and maximum
character count.
|
PasswordChecker.Factory |
PasswordChecker.Factory.disallowDuplicateCharacters(boolean disallowDuplicateCharacters) |
Disallow or allow duplicates inside character groups and between character groups.
|
static PasswordChecker.Factory |
PasswordChecker.factory() |
Create a factory to specify password validation criteria and create a PasswordChecker object.
|
PasswordChecker.Factory |
PasswordChecker.Factory.setMinMaxLength(int minLength,
int maxLength) |
Sets the minimum and maximum password lengths allowed.
|