cn.authing.sdk.java.dto.ResourceItemDto 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 ResourceItemDto {
/**
* 资源唯一标志符
*/
@JsonProperty("code")
private String code;
/**
* 资源定义的操作类型
*/
@JsonProperty("actions")
private List actions;
/**
* 资源类型,如数据、API、按钮、菜单
*/
@JsonProperty("resourceType")
private ResourceType resourceType;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public List getActions() {
return actions;
}
public void setActions(List actions) {
this.actions = actions;
}
public ResourceType getResourceType() {
return resourceType;
}
public void setResourceType(ResourceType resourceType) {
this.resourceType = resourceType;
}
/**
* 资源类型,如数据、API、按钮、菜单
*/
public static enum ResourceType {
@JsonProperty("DATA")
DATA("DATA"),
@JsonProperty("API")
API("API"),
@JsonProperty("MENU")
MENU("MENU"),
@JsonProperty("BUTTON")
BUTTON("BUTTON"),
@JsonProperty("UI")
UI("UI"),
;
private String value;
ResourceType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
}