All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.authing.sdk.java.dto.ListResourceTargetsDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;


public class ListResourceTargetsDto {
    /**
     * 数据策略所属的数据资源路径列表
     */
    @JsonProperty("resources")
    private List resources;
    /**
     * 数据资源权限操作列表
     */
    @JsonProperty("actions")
    private List actions;
    /**
     * 权限空间 Code
     */
    @JsonProperty("namespaceCode")
    private String namespaceCode;

    public List getResources() {
        return resources;
    }
    public void setResources(List resources) {
        this.resources = resources;
    }

    public List getActions() {
        return actions;
    }
    public void setActions(List actions) {
        this.actions = actions;
    }

    public String getNamespaceCode() {
        return namespaceCode;
    }
    public void setNamespaceCode(String namespaceCode) {
        this.namespaceCode = namespaceCode;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy