com.dahuatech.icc.oauth.http.AbstractIClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-oauth Show documentation
Show all versions of java-sdk-oauth Show documentation
Dahua ICC Open API SDK for Java
The newest version!
package com.dahuatech.icc.oauth.http;
import com.dahuatech.icc.oauth.unmarshaller.Unmarshaller;
/**
* @author 232676
* @since 1.0.0 2020-10-24 20:59:11
*/
public abstract class AbstractIClient implements IClient, Unmarshaller {
/**
* 请求签名
*
* @param request icc请求request
* @return 返回签名后的request
*/
abstract IccHttpHttpRequest signRequest(IccHttpHttpRequest request);
}