You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
521 B
Java

package com.engine.salary.remote.cbs8.common;
/**
* @author: KeXue
* @time: 2022/8/25
* @description:
*/
public interface Constants {
String TARGET_CONTENT_TYPE = "application/json";
String SIGN_HEADER_NAME = "X-MBCLOUD-API-SIGN";
String TIMESTAMP_HEADER = "X-MBCLOUD-TIMESTAMP";
String ENCRYPTION_ENABLED_HEADER_NAME = "X-MBCLOUD-ENCRYPTION-ENABLED";
String X_MBCLOUD_COMPRESS = "X-Mbcloud-Compress";
String AUTHORIZATION = "Authorization";
String BEARER = "Bearer ";
}