raised password length limit to 64 characters
This commit is contained in:
parent
15cb4d7467
commit
99cbda4727
2 changed files with 3 additions and 2 deletions
|
@ -15,7 +15,7 @@ import org.apache.commons.lang3.RandomStringUtils;
|
|||
*/
|
||||
public class UserAccount {
|
||||
public static final int MIN_PASSWORD_LENGTH = 6;
|
||||
public static final int MAX_PASSWORD_LENGTH = 12;
|
||||
public static final int MAX_PASSWORD_LENGTH = 64;
|
||||
|
||||
public enum Status {
|
||||
ACTIVE, INACTIVE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue