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

cn.tdchain.tdmsp.accessctl.Permission Maven / Gradle / Ivy

There is a newer version: 3.0.1.TD1
Show newest version
package cn.tdchain.tdmsp.accessctl;

import java.util.List;

public class Permission {
    private List readAll;
    private List readSystem;
    private List writeSimple;
    private List writeSystem;
    private String sender;


    public String getSender() {
        return sender;
    }

    public void setSender(String sender) {
        this.sender = sender;
    }

    public List getReadAll() {
        return readAll;
    }

    public void setReadAll(List readAll) {
        this.readAll = readAll;
    }

    public List getReadSystem() {
        return readSystem;
    }

    public void setReadSystem(List readSystem) {
        this.readSystem = readSystem;
    }

    public List getWriteSimple() {
        return writeSimple;
    }

    public void setWriteSimple(List writeSimple) {
        this.writeSimple = writeSimple;
    }

    public List getWriteSystem() {
        return writeSystem;
    }

    public void setWriteSystem(List writeSystem) {
        this.writeSystem = writeSystem;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy