package com.sandu.ximon.admin.config;
|
|
import com.google.gson.Gson;
|
|
public class VnnoxConstant {
|
|
// VNNOX MINIO save bucket suffix(companyId)
|
public static final String MINIO_PREFIX = "vnnox.";
|
|
public static final String REDIS_TOKEN_NAME = "vnnox_token";
|
public static final String REDIS_SCREEN_STATUS = "vnnox_screen_status:";
|
public static final String REDIS_VOL = "vnnox_vol:";
|
public static final String REDIS_BRIGHTNESS = "vnnox_brightness:";
|
public static final String REDIS_PROGRESS = "vnnox_progress:";
|
public static final String REDIS_SCREEN_SHOT = "vnnox_screen_shot:";
|
|
public static final Long REDIS_MAX_SAVE_TIME = 180 * 24 * 60 * 60L;
|
public static final Long SCREEN_SHOT_TIMEOUT = 30 * 60L;
|
|
public static final String NOTIFY_URL = "http://112.74.63.130:20017/serv/vnnox/progress";
|
public static final String SCREEN_SHOT_NOTIFY_URL = "http://112.74.63.130:20017/serv/vnnox/screenshot"; //要改
|
|
public static final String username = "zhxm";
|
public static final String password = "xm2512209.";
|
|
public static final Gson GSON = new Gson();
|
|
}
|