1 18 package org.apache.activemq.security; 19 20 import org.apache.activemq.command.ActiveMQDestination; 21 22 import java.util.Set ; 23 24 28 public interface AuthorizationMap { 29 30 33 Set getTempDestinationAdminACLs(); 34 35 38 Set getTempDestinationReadACLs(); 39 40 43 Set getTempDestinationWriteACLs(); 44 45 48 Set getAdminACLs(ActiveMQDestination destination); 49 50 53 Set getReadACLs(ActiveMQDestination destination); 54 55 58 Set getWriteACLs(ActiveMQDestination destination); 59 60 } 61 | Popular Tags |