com.dahuatech.icc.brm.model.v202010.SDK.BrmCardBatchAddSDK 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
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.model.v202010.card.BrmCardBatchAddRequest;
import com.dahuatech.icc.brm.model.v202010.card.BrmCardBatchAddResponse;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.exception.BusinessException;
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 15:44
* Description: 卡片批量添加
*/
public class BrmCardBatchAddSDK {
private static final Log logger = LogFactory.get();
/**
* 卡片批量添加
* **/
public BrmCardBatchAddResponse brmBatchCardAdd(BrmCardBatchAddRequest request){
BrmCardBatchAddResponse 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("Batch add card fail,errorMsg:{}",businessException,businessException.getMessage());
response = new BrmCardBatchAddResponse();
response.setCode(businessException.getCode());
response.setErrMsg(businessException.getErrorMsg());
response.setArgs(businessException.getArgs());
response.setSuccess(false);
return response;
}catch (Exception e){
logger.error("Batch add card fail,errorMsg:{}",e,e.getMessage());
response = new BrmCardBatchAddResponse();
response.setErrMsg(BrmConstant.SYSTEMERROR_MSG);
response.setCode(BrmConstant.SYSTEMERROR_CODE);
response.setSuccess(false);
return response;
}
return response;
}
}