* This method will remove the current multi-tenant queue manager instance.
*
* @throws QueuingException if the operation failed.
*/
public void removeQueueManager() throws QueuingException {
CarbonQueueManager manager = CarbonQueueManager.getInstance();
if (manager instanceof InternalCarbonQueueManager) {
((InternalCarbonQueueManager)manager).removeQueueManager();
}
log.debug("Successfully removed the Queue Manager");
}