com.dahuatech.icc.brm.model.v202010.role.BrmRoleAddRequest 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.role;
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;
import com.dahuatech.icc.util.CollectionUtil;
import com.dahuatech.icc.util.StringUtils;
import java.util.List;
import java.util.Set;
/**
* 角色新增
*
* @author 237417
* @since 2021/02/22
*/
public class BrmRoleAddRequest extends AbstractIccRequest {
/** 角色名称 */
private String roleName;
/** 角色等级 */
private Integer roleGrade;
/** 所属组织 */
private String ownerCode;
/*--------以上必填-----*/
/** 角色描述 */
private String memo;
/** 默认角色 */
private Integer defaultRole;
/** 菜单信息 */
private List menus;
/** 是否全量菜单 */
private Boolean allMenus;
/** 当前角色有权限的组织节点 */
private Set organizations;
/** 当前角色有权限的部门节点 */
private Set departments;
public BrmRoleAddRequest(Builder builder) {
super(BrmConstant.url(BrmConstant.BRM_URL_ROLE_ADD_POST), Method.POST);
this.roleName = builder.roleName;
this.roleGrade = builder.roleGrade;
this.memo = builder.memo;
this.ownerCode = builder.ownerCode;
this.defaultRole = builder.defaultRole;
this.menus = builder.menus;
this.allMenus = builder.allMenus;
this.organizations = builder.organizations;
this.departments = builder.departments;
putBodyParameter("roleName",roleName);
putBodyParameter("roleGrade",roleGrade);
putBodyParameter("memo",memo);
putBodyParameter("ownerCode",ownerCode);
putBodyParameter("defaultRole",defaultRole);
putBodyParameter("menus",menus);
putBodyParameter("allMenus",allMenus);
putBodyParameter("organization",organizations);
putBodyParameter("departments",departments);
}
public BrmRoleAddRequest(){
super(BrmConstant.url(BrmConstant.BRM_URL_ROLE_ADD_POST), Method.POST);
}
public static Builder builder() {
return new Builder();
}
@Override
public Class getResponseClass() {
return BrmRoleAddResponse.class;
}
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
putBodyParameter("roleName",roleName);
}
public Integer getRoleGrade() {
return roleGrade;
}
public void setRoleGrade(Integer roleGrade) {
this.roleGrade = roleGrade;
putBodyParameter("roleGrade",roleGrade);
}
public String getOwnerCode() {
return ownerCode;
}
public void setOwnerCode(String ownerCode) {
this.ownerCode = ownerCode;
putBodyParameter("ownerCode",ownerCode);
}
public String getMemo() {
return memo;
}
public void setMemo(String memo) {
this.memo = memo;
putBodyParameter("memo",memo);
}
public Integer getDefaultRole() {
return defaultRole;
}
public void setDefaultRole(Integer defaultRole) {
this.defaultRole = defaultRole;
putBodyParameter("defaultRole",defaultRole);
}
public List getMenus() {
return menus;
}
public void setMenus(List menus) {
this.menus = menus;
putBodyParameter("menus",menus);
}
public Boolean getAllMenus() {
return allMenus;
}
public void setAllMenus(Boolean allMenus) {
this.allMenus = allMenus;
putBodyParameter("allMenus",allMenus);
}
public Set getOrganizations() {
return organizations;
}
public void setOrganizations(Set organizations) {
this.organizations = organizations;
putBodyParameter("organization",organizations);
}
public Set getDepartments() {
return departments;
}
public void setDepartments(Set departments) {
this.departments = departments;
putBodyParameter("departments",departments);
}
@Override
public String toString() {
return "BrmRoleAddRequest{" +
"roleName='" + roleName + '\'' +
", roleGrade=" + roleGrade +
", ownerCode='" + ownerCode + '\'' +
", memo='" + memo + '\'' +
", defaultRole=" + defaultRole +
", menus=" + menus +
", allMenus=" + allMenus +
", organizations=" + organizations +
", departments=" + departments +
'}';
}
public static class MenuInfo {
private List menuCode;
private Integer terminal;
public List getMenuCode() {
return menuCode;
}
public void setMenuCode(List menuCode) {
this.menuCode = menuCode;
}
public Integer getTerminal() {
return terminal;
}
public void setTerminal(Integer terminal) {
this.terminal = terminal;
}
}
public static class Builder {
private String roleName;
private Integer roleGrade;
private String ownerCode;
/*--------以上必填-----*/
private String memo;
private Integer defaultRole;
private List menus;
private Boolean allMenus;
private Set organizations;
private Set departments;
public Builder roleName(String roleName) {
this.roleName = roleName;
return this;
}
public Builder roleGrade(Integer roleGrade) {
this.roleGrade = roleGrade;
return this;
}
public Builder owenCode(String ownerCode) {
this.ownerCode = ownerCode;
return this;
}
public Builder memo(String memo) {
this.memo = memo;
return this;
}
public Builder defaultRole(Integer defaultRole) {
this.defaultRole = defaultRole;
return this;
}
public Builder menus(List menus) {
this.menus = menus;
return this;
}
public Builder allMenus(Boolean allMenus) {
this.allMenus = allMenus;
return this;
}
public Builder organizations(Set organizations) {
this.organizations = organizations;
return this;
}
public Builder departments(Set departments) {
this.departments = departments;
return this;
}
public BrmRoleAddRequest build() throws ClientException {
return new BrmRoleAddRequest(this);
}
}
public void businessValid() {
if(StringUtils.isEmpty(roleName)){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "roleName");
}
if(roleGrade == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "roleGrade");
}
if(StringUtils.isEmpty(ownerCode)){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "ownerCode");
}
}
}