cn.authing.sdk.java.dto.GetUserResourcePermissionListDto 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;
public class GetUserResourcePermissionListDto {
/**
* 资源路径列表,**树资源需到具体树节点**
*/
@JsonProperty("resources")
private List resources;
/**
* 用户 ID
*/
@JsonProperty("userId")
private String userId;
/**
* 权限空间 Code
*/
@JsonProperty("namespaceCode")
private String namespaceCode;
public List getResources() {
return resources;
}
public void setResources(List resources) {
this.resources = resources;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getNamespaceCode() {
return namespaceCode;
}
public void setNamespaceCode(String namespaceCode) {
this.namespaceCode = namespaceCode;
}
}