cn.authing.sdk.java.dto.GetUserAuthResourcePermissionList 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 GetUserAuthResourcePermissionList {
/**
* 当前应用 Id
*/
@JsonProperty("namespaceCode")
private String namespaceCode;
/**
* 数据资源权限操作列表
*/
@JsonProperty("actions")
private List actions;
/**
* 数据资源路径
*/
@JsonProperty("resource")
private String resource;
public String getNamespaceCode() {
return namespaceCode;
}
public void setNamespaceCode(String namespaceCode) {
this.namespaceCode = namespaceCode;
}
public List getActions() {
return actions;
}
public void setActions(List actions) {
this.actions = actions;
}
public String getResource() {
return resource;
}
public void setResource(String resource) {
this.resource = resource;
}
}