| 12345678910111213141516171819202122 |
- package com.genersoft.iot.vmp.common;
- /**
- * @Description:TODO(这里用一句话描述这个类的作用)
- * @author: songww
- * @date: 2019年5月30日 下午3:04:04
- *
- */
- public class VideoManagerConstants {
-
- public static final String CACHEKEY_PREFIX = "VMP_deviceId_";
- public static final String KEEPLIVEKEY_PREFIX = "VMP_keeplive_";
-
- public static final String EVENT_ONLINE_REGISTER = "1";
-
- public static final String EVENT_ONLINE_KEEPLIVE = "2";
-
- public static final String EVENT_OUTLINE_UNREGISTER = "1";
-
- public static final String EVENT_OUTLINE_TIMEOUT = "2";
- }
|