Constants.java 363 B

123456789101112131415161718192021
  1. package com.iden.common.constant;
  2. /**
  3. * Created by y on 2017/11/23.
  4. * @author y
  5. */
  6. public interface Constants {
  7. /**
  8. * 储存用户登录信息KEY
  9. */
  10. String CURRENT_LOGINED_USER_KEY = "currentLoginedUserKey";
  11. /**
  12. * 请求中传输TOKEN键
  13. */
  14. String LOGIN_TOKEN_KEY = "token";
  15. String VALID_STATUS = "valid_status";
  16. }