You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
308 B

package controller;
public class Config {
public static final String USER_DATA_FILE = "users.dat";
public static final int MIN_PASSWORD_LENGTH = 6;
public static final int MAX_PASSWORD_LENGTH = 10;
public static final int MIN_QUESTIONS = 1;
public static final int MAX_QUESTIONS = 100;
}