com.gitee.easyopen.ParamNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen-mini Show documentation
Show all versions of easyopen-mini Show documentation
easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen
package com.gitee.easyopen;
/**
* 请求参数名定义
*
* @author tanghc
*/
public class ParamNames {
public static volatile String API_NAME = "name";
public static volatile String VERSION_NAME = "version";
public static volatile String APP_KEY_NAME = "app_key";
public static volatile String DATA_NAME = "data";
public static volatile String TIMESTAMP_NAME = "timestamp";
public static volatile String SIGN_NAME = "sign";
public static volatile String FORMAT_NAME = "format";
public static volatile String TIMESTAMP_PATTERN = "yyyy-MM-dd HH:mm:ss";
public static volatile String ACCESS_TOKEN_NAME = "access_token";
public static volatile String SIGN_METHOD_NAME = "sign_method";
}