- package com.yihu.jw.constants;
- /**
- * Created by Sand Wen on 2016.2.27.
- */
- public class HttpHeader {
- public static final String RATE_LIMIT_LIMIT = "X-RateLimit-Limit";
- public static final String RATE_LIMIT_REMAINING = "X-RateLimit-Remaining";
- public static final String RATE_LIMIT_RESET = "X-RateLimit-Reset";
- public static final String TOTAL_COUNT = "X-Total-Count";
- public static final String AUTHORIZATION = "Authorization";
- }
|