All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.icc.brm.model.v202010.SDK.BrmPersonBatchAddSDK Maven / Gradle / Ivy

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.model.v202010.person.BrmPersonBatchAddRequest;
import com.dahuatech.icc.brm.model.v202010.person.BrmPersonBatchAddResponse;
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-15 09:03
 * Description: 人员批量添加
 */
public class BrmPersonBatchAddSDK {
    private static final Log logger = LogFactory.get();

    /**
     * 人员添加
     * **/
    public BrmPersonBatchAddResponse personBatchAdd(BrmPersonBatchAddRequest request){

        BrmPersonBatchAddResponse 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 person fail,errorMsg:{}.",businessException,businessException.getMessage());
            response = new BrmPersonBatchAddResponse();
            response.setCode(businessException.getCode());
            response.setErrMsg(businessException.getErrorMsg());
            response.setArgs(businessException.getArgs());
            response.setSuccess(false);
            return response;
        }catch (Exception e){
            logger.error("Batch add person fail,errorMsg:{}.",e,e.getMessage());
            response = new BrmPersonBatchAddResponse();
            response.setErrMsg(BrmConstant.SYSTEMERROR_MSG);
            response.setCode(BrmConstant.SYSTEMERROR_CODE);
            response.setSuccess(false);
            return response;
        }
        return response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy