PasswordPolicy
trait PasswordPolicy
This trait contains a collection of getter functions for retrieving values regarding your password policy.
Methods
Gets max length rule for password.
Gets minimum rule for password.
Gets lower char requirement for password.
Gets value for max length for passwords.
Gets value for min length for passwords.
Gets numeric char requirement for password.
Gets special char requirement for password.
Gets upper char requirement for password.
Details
at line 15
bool
isMaxLength()
Gets max length rule for password.
at line 24
bool
isMinLength()
Gets minimum rule for password.
at line 33
bool
lowerChar()
Gets lower char requirement for password.
at line 42
string
maxLength()
Gets value for max length for passwords.
at line 51
string
minLength()
Gets value for min length for passwords.
at line 60
bool
numericChar()
Gets numeric char requirement for password.
at line 69
bool
specialChar()
Gets special char requirement for password.
at line 78
bool
upperChar()
Gets upper char requirement for password.