com.aliyun.openservices.eas.predict.http.HttpHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas-sdk Show documentation
Show all versions of eas-sdk Show documentation
SDK for PAI-EAS online inference services
package com.aliyun.openservices.eas.predict.http;
/**
* Created by yaozheng.wyz on 2017/10/31.
*/
public interface HttpHeaders {
public static final String AUTHORIZATION = "Authorization";
public static final String CONTENT_LENGTH = "Content-Length";
public static final String CONTENT_TYPE = "Content-Type";
public static final String DATE = "Date";
public static final String CONTENT_MD5 = "Content-MD5";
}