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

cn.tdchain.tdmsp.manage.TdMSPAcl Maven / Gradle / Ivy

There is a newer version: 3.0.1.TD1
Show newest version
/*
 * Copyright (c) 2019 Beijing Tiande Technology Co., Ltd.
 * All Rights Reserved.
 */
package cn.tdchain.tdmsp.manage;

import java.util.ArrayList;
import java.util.HashMap;

/**
 * @version 1.0
 * @author jiating 2019-01-08
 */
public class TdMSPAcl {
    private ArrayList crlList = new ArrayList();
    private ArrayList ouList = new ArrayList();
    private ArrayList policiesList = new ArrayList();
    private HashMap> aclMap = new HashMap>();
    
    
    public TdMSPAcl() {
       
    }
    public ArrayList getCrlList() {
        return crlList;
    }
    public void setCrlList(ArrayList crlList) {
        this.crlList = crlList;
    }
    public ArrayList getOuList() {
        return ouList;
    }
    public void setOuList(ArrayList ouList) {
        this.ouList = ouList;
    }
    public ArrayList getPoliciesList() {
        return policiesList;
    }
    public void setPoliciesList(ArrayList policiesList) {
        this.policiesList = policiesList;
    }
    public HashMap> getAclMap() {
        return aclMap;
    }
    public void setAclMap(HashMap> aclMap) {
        this.aclMap = aclMap;
    }
   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy