com.dahuatech.icc.oauth.model.v202010.OauthPublicKeyRequest 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
package com.dahuatech.icc.oauth.model.v202010;
import com.dahuatech.hutool.http.Method;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.constant.OauthConstant;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
/**
* 鉴权公钥
*
* @author 232676
* @since 1.0.0 2020-10-24 20:59:11
*/
public class OauthPublicKeyRequest extends AbstractIccRequest {
public OauthPublicKeyRequest() {
super(OauthConstant.url(OauthConstant.OAUTH_URL_PUBLIC_KEY_GET), Method.GET, Boolean.FALSE);
}
@Override
public Class getResponseClass() {
return OauthPublicKeyResponse.class;
}
public void businessValid() {
}
}