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

com.dahuatech.icc.cirs.model.v202209.material.MaterialMergeRequest Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.cirs.model.v202209.material;

import com.dahuatech.hutool.http.Method;
import com.dahuatech.icc.cirs.constant.CirsConstant;
import com.dahuatech.icc.cirs.enums.DirTypeEnums;
import com.dahuatech.icc.common.ParamValidEnum;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.exception.BusinessException;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
import com.dahuatech.icc.oauth.model.v202010.HttpConfigInfo;
import com.dahuatech.icc.util.StringUtils;

/**
 * program:java-sdk
 *
 * @Author: 355079
 * @Date:2022-09-06 10:58
 * @Description: 素材分片合并
 */
public class MaterialMergeRequest extends AbstractIccRequest {
    private String name;
    private Integer dirType;
    private String dirCode;
    private String taskId;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        putBodyParameter("name",name);
        this.name = name;
    }

    public Integer getDirType() {
        return dirType;
    }

    public void setDirType(Integer dirType) {
        putBodyParameter("dirType",dirType);
        this.dirType = dirType;
    }

    public String getDirCode() {
        return dirCode;
    }

    public void setDirCode(String dirCode) {
        putBodyParameter("dirCode",dirCode);
        this.dirCode = dirCode;
    }

    public String getTaskId() {
        return taskId;
    }

    public void setTaskId(String taskId) {
        putBodyParameter("taskId",taskId);
        this.taskId = taskId;
    }

    public MaterialMergeRequest() throws ClientException {
        super(CirsConstant.url(CirsConstant.MATERIAL_MERGE), Method.POST);
    }

    public MaterialMergeRequest(HttpConfigInfo httpConfigInfo, String url, Method method) throws ClientException {
        super(httpConfigInfo.getPrefixUrl() + url, method, Boolean.TRUE);
    }

    @Override
    public Class getResponseClass() {
        return MaterialMergeResponse.class;
    }

    public void businessValid() throws BusinessException {
        if(StringUtils.isEmpty(name)){
            throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(), ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "name");
        }
        if(!DirTypeEnums.isRight(dirType)){
            throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(), ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "dirType");
        }
        if(StringUtils.isEmpty(dirCode)){
            throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(), ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "dirCode");
        }
        if(StringUtils.isEmpty(taskId)){
            throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(), ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "taskId");
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy