Uses of Class
org.apache.qpid.management.common.mbeans.annotations.MBeanOperation

Packages that use MBeanOperation
org.apache.qpid.management.common.mbeans   
 

Uses of MBeanOperation in org.apache.qpid.management.common.mbeans
 

Methods in org.apache.qpid.management.common.mbeans with annotations of type MBeanOperation
 TabularData ManagedExchange.bindings()
          Returns all the bindings this exchange has with the queues.
 TabularData ManagedConnection.channels()
          channel details of all the channels opened for this connection.
 Long ManagedQueue.clearQueue()
          Clears the queue by deleting all the messages from the queue that have not been acquired by consumers" Since Qpid JMX API 1.3 this returns the number of messages deleted.
 void ManagedConnection.closeConnection()
          Closes all the related channels and unregisters this connection from managed objects.
 void ManagedConnection.commitTransactions(int channelId)
          Commits the transactions if the channel is transactional.
 void ManagedQueue.copyMessages(long fromMessageId, long toMessageId, String toQueue)
          Copies the messages in given range of AMQ message Ids to a given Queue.
 void ManagedExchange.createNewBinding(String queueName, String binding)
          Creates new binding with the given queue and binding.
 void ManagedBroker.createNewExchange(String name, String type, boolean durable)
          Creates a new Exchange.
 void ManagedBroker.createNewQueue(String queueName, String owner, boolean durable)
          Create a new Queue on the Broker server.
 boolean UserManagement.createUser(String username, char[] password, boolean read, boolean write, boolean admin)
          Deprecated. since Qpid JMX API 1.7
 boolean UserManagement.createUser(String username, String password, boolean read, boolean write, boolean admin)
          Create users with given details.
 void ManagedQueue.deleteMessageFromTop()
          Deprecated. 
 void ManagedQueue.deleteMessages(long fromMessageId, long toMessageId)
          Deletes the messages in given range of AMQ message Ids in the given Queue.
 void ManagedBroker.deleteQueue(String queueName)
          Unregisters the Queue bindings, removes the subscriptions and unregisters from the managed objects.
 boolean UserManagement.deleteUser(String username)
          View users returns all the users that are currently available to the system.
 void ManagedQueue.moveMessages(long fromMessageId, long toMessageId, String toQueue)
          Moves the messages in given range of message Ids to given Queue.
 void LoggingManagement.reloadConfigFile()
          Reloads the log4j configuration file, applying any changes made.
 boolean UserManagement.reloadData()
          Reload the date from disk Since Qpid JMX API 1.2 this operation reloads the password and authorisation files.
 void ConfigurationManagement.reloadSecurityConfiguration()
          Reload the
 void ManagedExchange.removeBinding(String queueName, String binding)
          Removes an exchange binding from a queue.
 List<String> ManagedBroker.retrieveQueueAttributeNames()
          Returns a list containing the names of the attributes available for the Queue mbeans.
 List<List<Object>> ManagedBroker.retrieveQueueAttributeValues(String[] attributes)
          Returns a List of Object Lists containing the requested attribute values (in the same sequence requested) for each queue in the virtualhost.
 void ManagedConnection.rollbackTransactions(int channelId)
          Rollsback the transactions if the channel is transactional.
 boolean LoggingManagement.setConfigFileLoggerLevel(String logger, String level)
          Updates the level of an existing Log4J logger within the xml configuration file
 boolean LoggingManagement.setConfigFileRootLoggerLevel(String level)
          Updates the level of the Log4J RootLogger within the xml configuration file if it is present
 boolean UserManagement.setPassword(String username, char[] password)
          Deprecated. since Qpid JMX API 1.7
 boolean UserManagement.setPassword(String username, String password)
          Set password for a given user.
 boolean UserManagement.setRights(String username, boolean read, boolean write, boolean admin)
          set rights for users with given details
 boolean LoggingManagement.setRuntimeLoggerLevel(String logger, String level)
          Sets the level of an active Log4J logger
 boolean LoggingManagement.setRuntimeRootLoggerLevel(String level)
          Sets the level of the active Log4J RootLogger
 void ManagedBroker.unregisterExchange(String exchange)
          unregisters all the channels, queuebindings etc and unregisters this exchange from managed objects.
 TabularData LoggingManagement.viewConfigFileLoggerLevels()
          Retrieves a TabularData set of the existing Log4J loggers within the xml configuration file
 TabularData LoggingManagement.viewEffectiveRuntimeLoggerLevels()
          Retrieves a TabularData set of the active log4j loggers and their levels
 CompositeData ManagedQueue.viewMessageContent(long messageId)
          Returns the content for the given AMQ Message ID.
 TabularData ManagedQueue.viewMessages(int fromIndex, int toIndex)
          Deprecated. 
 TabularData ManagedQueue.viewMessages(long startPosition, long endPosition)
          Returns a subset (up to 2^31 messages at a time) of all the messages stored on the queue.
 TabularData UserManagement.viewUsers()
          View users returns all the users that are currently available to the system.
 



Licensed to the Apache Software Foundation