com.dahuatech.icc.brm.model.v202010.SDK.BrmCardSyncSDK Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-brm Show documentation
Show all versions of java-sdk-brm Show documentation
Dahua ICC Open API SDK for Java
The newest version!
package com.dahuatech.icc.brm.model.v202010.SDK;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
import com.dahuatech.icc.brm.constant.BrmConstant;
import com.dahuatech.icc.brm.exception.BusinessException;
import com.dahuatech.icc.brm.model.v202010.card.BrmCardSyncRequest;
import com.dahuatech.icc.brm.model.v202010.card.BrmCardSyncResponse;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.IccClient;
import com.dahuatech.icc.oauth.model.v202010.OauthConfigBaseInfo;
import com.dahuatech.icc.oauth.model.v202010.OauthConfigUserPwdInfo;
/**
* program:java-sdk
*
* Author: 312013
* Date:2022-07-13 16:58
* Description: 卡片全量数据同步
*/
public class BrmCardSyncSDK {
private static final Log logger = LogFactory.get();
/**
* 卡片全量数据同步
* **/
public BrmCardSyncResponse brmCardReturn(BrmCardSyncRequest request) {
BrmCardSyncResponse response = null;
try{
//基本校验
request.valid();
//业务校验
request.businessValid();
//设置url
request.setUrl(request.getOauthConfigBaseInfo().getHttpConfigInfo().getPrefixUrl() + request.getUrl().substring(8));
//业务逻辑处理
response = new IccClient(request.getOauthConfigBaseInfo()).doAction(request, request.getResponseClass());
}catch (BusinessException businessException){
logger.error("卡片-卡片全量数据同步:{}",businessException,businessException.getMessage());
response = new BrmCardSyncResponse();
response.setCode(businessException.getCode());
response.setErrMsg(businessException.getErrorMsg());
response.setArgs(businessException.getArgs());
response.setSuccess(false);
}catch (Exception e){
logger.error("卡片-卡片全量数据同步:{}",e,e.getMessage());
response = new BrmCardSyncResponse();
response.setErrMsg(BrmConstant.SYSTEMERROR_MSG);
response.setCode(BrmConstant.SYSTEMERROR_CODE);
response.setSuccess(false);
}
return response;
}
}