cn.authing.sdk.java.dto.SetCustomDataReqDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import cn.authing.sdk.java.dto.SetCustomDataDto;
public class SetCustomDataReqDto {
/**
* 自定义数据列表
*/
@JsonProperty("list")
private List list;
/**
* 目标对象的唯一标志符:
* - 如果是用户,为用户的 ID,如 `6343b98b7cfxxx9366e9b7c`
* - 如果是角色,为角色的 code,如 `admin`
* - 如果是分组,为分组的 code,如 `developer`
* - 如果是部门,为部门的 ID,如 `6343bafc019xxxx889206c4c`
*
*/
@JsonProperty("targetIdentifier")
private String targetIdentifier;
/**
* 目标对象类型:
* - `USER`: 用户
* - `ROLE`: 角色
* - `GROUP`: 分组
* - `DEPARTMENT`: 部门
*
*/
@JsonProperty("targetType")
private TargetType targetType;
/**
* 租户 ID
*/
@JsonProperty("tenantId")
private String tenantId;
/**
* 所属权限分组的 code,当 target_type 为角色的时候需要填写,否则可以忽略
*/
@JsonProperty("namespace")
private String namespace;
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public String getTargetIdentifier() {
return targetIdentifier;
}
public void setTargetIdentifier(String targetIdentifier) {
this.targetIdentifier = targetIdentifier;
}
public TargetType getTargetType() {
return targetType;
}
public void setTargetType(TargetType targetType) {
this.targetType = targetType;
}
public String getTenantId() {
return tenantId;
}
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
/**
* 目标对象类型:
* - `USER`: 用户
* - `ROLE`: 角色
* - `GROUP`: 分组
* - `DEPARTMENT`: 部门
*
*/
public static enum TargetType {
@JsonProperty("USER")
USER("USER"),
@JsonProperty("ROLE")
ROLE("ROLE"),
@JsonProperty("GROUP")
GROUP("GROUP"),
@JsonProperty("DEPARTMENT")
DEPARTMENT("DEPARTMENT"),
;
private String value;
TargetType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
}