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:
nac26 2010-07-13 14:06:34 +00:00
parent bb08bef23f
commit 011da5a7af

View file

@ -7,8 +7,8 @@ import java.util.Date;
public class User implements Comparable {
public final static int MIN_PASSWORD_LENGTH = 5;
public final static int MAX_PASSWORD_LENGTH = 99;
public final static int MIN_PASSWORD_LENGTH = 6;
public final static int MAX_PASSWORD_LENGTH = 12;
private String URI = null;
private String namespace = null;