package com.moon.server.entity.all;
|
|
@SuppressWarnings("ALL")
|
public class SettingData {
|
public static int PWD_ERR_COUNT = 5;
|
|
public static int PWD_ERR_TIME = 5;
|
|
public static int AUTO_LOGOUT = 15;
|
|
public static int TOKEN_EXPIRE = 240;
|
|
public static int CACHE_EXPIRE = 240;
|
|
public static int MAX_FILES = 2001;
|
|
public static int COOKIE_MAX_AGE = 4 * 60 * 60;
|
|
public static long MAX_FILE_SIZE = 50 * 1024 * 1024;
|
|
public static int MAX_USER_LOGIN = 1000;
|
|
public static int MAX_SERVERS = 100000;
|
}
|