123456789101112131415161718 |
- package com.webchat.common.constants;
- /**
- * @Author: 程序员七七 程序员盒子网站作者
- */
- public class CookieConstants {
- public static final String WEB_CHAT_ADMIN_USER_COOKIE_KEY = "WEB_CHAT_ADMIN_USER_COOKIE_KEY";
- public static final String WEB_CHAT_CLIENT_USER_COOKIE_KEY = "WEB_CHAT_CLIENT_USER_COOKIE_KEY";
- public static final String WEB_CHAT_MALL_USER_COOKIE_KEY = "WEB_CHAT_MALL_USER_COOKIE_KEY";
- /***
- * cookie过期时间 秒为单位,3天
- */
- public static final int COOKIE_OUT_TIME = 60 * 60 * 24 * 3;
- }
|