com.dahuatech.icc.brm.model.v202010.SDK.BrmCarAddSDK 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.car.BrmCarAddRequest;
import com.dahuatech.icc.brm.model.v202010.car.BrmCarAddResponse;
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-09 13:48
* Description: 添加车辆
*/
public class BrmCarAddSDK {
private static final Log logger = LogFactory.get();
/**
* 添加卡片
**/
public BrmCarAddResponse brmCarAdd(BrmCarAddRequest request) {
BrmCarAddResponse response = null;
try{
//基本校验
request.valid();
//业务校验
request.businessValid();
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 BrmCarAddResponse();
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 BrmCarAddResponse();
response.setErrMsg(BrmConstant.SYSTEMERROR_MSG);
response.setCode(BrmConstant.SYSTEMERROR_CODE);
response.setSuccess(false);
}
return response;
}
}