Package org.apache.activemq.security
Interface SecurityAdminMBean
-
- All Known Implementing Classes:
AuthorizationBroker
public interface SecurityAdminMBean
An MBean for adding and removing users, roles and destinations.
-
-
Field Summary
Fields Modifier and Type Field Description static String
OPERATION_ADMIN
static String
OPERATION_READ
static String
OPERATION_WRITE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addQueueRole(String queue, String operation, String role)
void
addRole(String role)
void
addTopicRole(String topic, String operation, String role)
void
addUserRole(String user, String role)
void
removeQueueRole(String queue, String operation, String role)
void
removeRole(String role)
void
removeTopicRole(String topic, String operation, String role)
void
removeUserRole(String user, String role)
-
-
-
Field Detail
-
OPERATION_READ
static final String OPERATION_READ
- See Also:
- Constant Field Values
-
OPERATION_WRITE
static final String OPERATION_WRITE
- See Also:
- Constant Field Values
-
OPERATION_ADMIN
static final String OPERATION_ADMIN
- See Also:
- Constant Field Values
-
-