com.dahuatech.icc.passengerflow.model.v202207.SDK.CustomerLabelAllSDK Maven / Gradle / Ivy
package com.dahuatech.icc.passengerflow.model.v202207.SDK;
import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;
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;
import com.dahuatech.icc.oauth.model.v202010.oSDK.OauthParamConstant;
import com.dahuatech.icc.passengerflow.constant.PassengerFlowConstant;
import com.dahuatech.icc.passengerflow.model.v202207.label.CustomerLabelAllRequest;
import com.dahuatech.icc.passengerflow.model.v202207.label.CustomerLabelAllResponse;
/**
* program:java-sdk
*
* Author: 355079
* Date:2022-08-08 11:10
* Description: 获取自定义标签列表
*/
public class CustomerLabelAllSDK {
private static final Log logger = LogFactory.get();
/**
* 获取自定义标签列表
**/
public static CustomerLabelAllResponse CustomerLabelAll(CustomerLabelAllRequest request) {
CustomerLabelAllResponse response = null;
try {
//基本校验
request.valid();
//业务校验
request.businessValid();
request.setUrl(new CustomerLabelAllRequest(request.getOauthConfigBaseInfo().getHttpConfigInfo(), PassengerFlowConstant.CUSTOMER_LABEL_ALL, request.getMethod()).getUrl());
//业务逻辑处理
response = new IccClient(request.getOauthConfigBaseInfo()).doAction(request, request.getResponseClass());
} catch (BusinessException businessException) {
logger.error("CustomerLabelAllSDK,CustomerLabelAll,errorMessage:{},errorArgs:{},errorCode:{}", businessException.getErrorMsg(), businessException.getArgs(), businessException.getCode());
response = new CustomerLabelAllResponse();
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 CustomerLabelAllResponse();
response.setErrMsg(OauthParamConstant.SYSTEME_RROR.getErrMsg());
response.setCode(OauthParamConstant.SYSTEME_RROR.getCode());
response.setSuccess(false);
}
return response;
}
}