Package org.apache.activemq.security
Interface AuthorizationMap
-
- All Known Implementing Classes:
CachedLDAPAuthorizationMap,DefaultAuthorizationMap,LDAPAuthorizationMap,SimpleAuthorizationMap,SimpleCachedLDAPAuthorizationMap,XBeanAuthorizationMap
public interface AuthorizationMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<?>getAdminACLs(ActiveMQDestination destination)Returns the set of all ACLs capable of administering the given destinationSet<?>getReadACLs(ActiveMQDestination destination)Returns the set of all ACLs capable of reading (consuming from) the given destinationSet<?>getTempDestinationAdminACLs()Returns the set of all ACLs capable of administering temp destinationSet<?>getTempDestinationReadACLs()Returns the set of all ACLs capable of reading from temp destinationSet<?>getTempDestinationWriteACLs()Returns the set of all ACLs capable of writing to temp destinationSet<?>getWriteACLs(ActiveMQDestination destination)Returns the set of all ACLs capable of writing to the given destination
-
-
-
Method Detail
-
getTempDestinationAdminACLs
Set<?> getTempDestinationAdminACLs()
Returns the set of all ACLs capable of administering temp destination
-
getTempDestinationReadACLs
Set<?> getTempDestinationReadACLs()
Returns the set of all ACLs capable of reading from temp destination
-
getTempDestinationWriteACLs
Set<?> getTempDestinationWriteACLs()
Returns the set of all ACLs capable of writing to temp destination
-
getAdminACLs
Set<?> getAdminACLs(ActiveMQDestination destination)
Returns the set of all ACLs capable of administering the given destination
-
getReadACLs
Set<?> getReadACLs(ActiveMQDestination destination)
Returns the set of all ACLs capable of reading (consuming from) the given destination
-
getWriteACLs
Set<?> getWriteACLs(ActiveMQDestination destination)
Returns the set of all ACLs capable of writing to the given destination
-
-