com.dahuatech.icc.brm.model.v202010.SDK.BrmCarBatchAddSDK 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.exception.BusinessException;
import com.dahuatech.icc.brm.model.v202010.car.BrmCarBatchAddRequest;
import com.dahuatech.icc.brm.model.v202010.car.BrmCarBatchAddResponse;
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 14:22
* Description: 批量添加车辆
*/
public class BrmCarBatchAddSDK {
private static final Log logger = LogFactory.get();
/**
* 卡片批量添加
* **/
public BrmCarBatchAddResponse brmCarBatchAdd(BrmCarBatchAddRequest request) {
BrmCarBatchAddResponse 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 BrmCarBatchAddResponse();
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 BrmCarBatchAddResponse();
response.setErrMsg(BrmConstant.SYSTEMERROR_MSG);
response.setCode(BrmConstant.SYSTEMERROR_CODE);
response.setSuccess(false);
}
return response;
}
}