com.dahuatech.icc.brm.model.v202010.department.BrmDeptDeleteRequest 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.department;
import com.dahuatech.hutool.http.Method;
import com.dahuatech.icc.brm.constant.BrmConstant;
import com.dahuatech.icc.brm.constant.ParamConstant;
import com.dahuatech.icc.brm.exception.BusinessException;
import com.dahuatech.icc.common.ParamValidEnum;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
/**
* 组织删除,method=delete,必填字段使用Builder
*
* @author 232676
* @since 1.0.0 2020/11/3 11:22
*/
public class BrmDeptDeleteRequest extends AbstractIccRequest {
/** 部门Id */
private Long id;
/** 服务名 */
private String service;
private BrmDeptDeleteRequest(Builder builder) {
super(BrmConstant.url(BrmConstant.BRM_URL_DEPT_DEL_DELETE), Method.DELETE);
this.id = builder.id;
this.service = builder.service;
putBodyParameter("service", service);
putBodyParameter("id", id);
}
public BrmDeptDeleteRequest(){
super(BrmConstant.url(BrmConstant.BRM_URL_DEPT_DEL_DELETE), Method.DELETE);
}
public static Builder builder() {
return new Builder();
}
@Override
public Class getResponseClass() {
return BrmDeptDeleteResponse.class;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getService() {
return service;
}
public void setService(String service) {
this.service = service;
}
@Override
public String toString() {
return "BrmDeptDeleteRequest{" + "id=" + id + ", service='" + service + '\'' + '}';
}
public static class Builder {
/** 部门Id */
private Long id;
/** 服务名 */
private String service;
public Builder id(Long id) {
this.id = id;
return this;
}
public Builder service(String service) {
this.service = service;
return this;
}
@Override
public String toString() {
return "Builder{" + "id=" + id + ", service='" + service + '\'' + '}';
}
public BrmDeptDeleteRequest build() throws ClientException {
return new BrmDeptDeleteRequest(this);
}
}
public void businessValid() {
if(id == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "id");
}
if(service == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "service");
}
}
}