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

io.github.quickmsg.common.acl.AclManager Maven / Gradle / Ivy

The newest version!
package io.github.quickmsg.common.acl;

import io.github.quickmsg.common.acl.model.PolicyModel;
import io.github.quickmsg.common.channel.MqttChannel;

import java.util.List;

/**
 * @author luxurong
 */
public interface AclManager {

    boolean check(MqttChannel mqttChannel, String source, AclAction action);

    boolean add(String sub,String source,AclAction action,AclType type);


    boolean delete(String sub,String source,AclAction action,AclType type);

    List> get(PolicyModel policyModel);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy