Updated MIN_PASSWORD_LENGTH (6) and MAX_PASSWORD_LENGTH (12) to coincide with what's currently enforced on the "backend" when creating user accounts NIHVIVO-227 NIHVIVO-784
This commit is contained in:
parent
bb08bef23f
commit
011da5a7af
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@ import java.util.Date;
|
||||||
|
|
||||||
public class User implements Comparable {
|
public class User implements Comparable {
|
||||||
|
|
||||||
public final static int MIN_PASSWORD_LENGTH = 5;
|
public final static int MIN_PASSWORD_LENGTH = 6;
|
||||||
public final static int MAX_PASSWORD_LENGTH = 99;
|
public final static int MAX_PASSWORD_LENGTH = 12;
|
||||||
|
|
||||||
private String URI = null;
|
private String URI = null;
|
||||||
private String namespace = null;
|
private String namespace = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue