PasswordRules
public class PasswordRules
Model class to represent the password rules(attributes).
Field Summary
Parameters | ||
---|---|---|
Bool | minEnabled | Bool to indicate if the minimum characters check is enabled. |
Bool | minSpecialEnabled | Bool to indicate if the minimum special characters rule is enabled. |
Bool | minNumbersEnabled | Bool to indicate if the minimum numbers check is enabled. |
Bool | specialCharAllowedEnabled | Bool to indicate if special characters are allowed. |
Bool | minAlphaCapsEnabled | Bool to indicate if a minimum number of alphabet characters are allowed. |
Bool | noUsername | Bool to indicate if a username is allowed. |
Bool | noUsernameEnabled | Bool to indicate if a username is enabled. |
Bool | allowInRowEnabledMaximum | Bool to indicate if a same character is used a maximum number of times in a row. |
Int | minTotal | Minimum nunber of characters allowed. |
Int | minSpecialTotal | Minimum nunber of special characters allowed. |
Int | minNumbersTotal | Minimum nunber of characters total. |
String | specialCharsAllowed | Special characters allowed. |
Int | minAlphaCaps | Minimum number of alpha-caps. |
Int | allowInRow | Number of characters allowed in a row |