Package org.apache.activemq.security
Interface AuthorizationMap
- All Known Implementing Classes:
DefaultAuthorizationMap,LDAPAuthorizationMap,SimpleAuthorizationMap,SimpleCachedLDAPAuthorizationMap
public interface AuthorizationMap
-
Method Summary
Modifier and TypeMethodDescriptionSet<?>getAdminACLs(org.apache.activemq.command.ActiveMQDestination destination) Returns the set of all ACLs capable of administering the given destinationSet<?>getReadACLs(org.apache.activemq.command.ActiveMQDestination destination) Returns the set of all ACLs capable of reading (consuming from) the given destinationSet<?>Returns the set of all ACLs capable of administering temp destinationSet<?>Returns the set of all ACLs capable of reading from temp destinationSet<?>Returns the set of all ACLs capable of writing to temp destinationSet<?>getWriteACLs(org.apache.activemq.command.ActiveMQDestination destination) Returns the set of all ACLs capable of writing to the given destination
-
Method Details
-
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
Returns the set of all ACLs capable of administering the given destination -
getReadACLs
Returns the set of all ACLs capable of reading (consuming from) the given destination -
getWriteACLs
Returns the set of all ACLs capable of writing to the given destination
-