You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ch...@apache.org on 2014/07/15 15:40:51 UTC

svn commit: r1610697 - /qpid/trunk/qpid/cpp/src/qpid/acl/AclValidator.cpp

Author: chug
Date: Tue Jul 15 13:40:51 2014
New Revision: 1610697

URL: http://svn.apache.org/r1610697
Log:
QPID-5890: Add missing "queuename" property for MOVE QUEUE and REDIRECT QUEUE

Modified:
    qpid/trunk/qpid/cpp/src/qpid/acl/AclValidator.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/acl/AclValidator.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/acl/AclValidator.cpp?rev=1610697&r1=1610696&r2=1610697&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/acl/AclValidator.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/acl/AclValidator.cpp Tue Jul 15 13:40:51 2014
@@ -138,8 +138,8 @@ namespace acl {
         RP("Broker::queryQueue",                    ACT_ACCESS,  OBJ_QUEUE);
         RP("Broker::getTimestampConfig",            ACT_ACCESS,  OBJ_BROKER);
         RP("Broker::setTimestampConfig",            ACT_UPDATE,  OBJ_BROKER);
-        RP("Broker::queueRedirect",                 ACT_REDIRECT,OBJ_QUEUE);
-        RP("Broker::queueMoveMessages",             ACT_MOVE,    OBJ_QUEUE);
+        RP("Broker::queueRedirect",                 ACT_REDIRECT,OBJ_QUEUE, "queuename");
+        RP("Broker::queueMoveMessages",             ACT_MOVE,    OBJ_QUEUE, "queuename");
         RP("Broker::createQueue",                   ACT_CREATE,  OBJ_QUEUE, "alternate durable exclusive autodelete policytype paging maxpages maxpagefactor maxqueuecount maxqueuesize maxfilecount maxfilesize");
         RP("Broker::deleteQueue",                   ACT_DELETE,  OBJ_QUEUE, "alternate durable exclusive autodelete policytype");
         RP("Broker::createExchange",                ACT_CREATE,  OBJ_EXCHANGE, "type alternate durable autodelete");
@@ -154,7 +154,7 @@ namespace acl {
         RP("ExchangeHandlerImpl::query",            ACT_ACCESS,  OBJ_EXCHANGE);
         RP("ExchangeHandlerImpl::bound",            ACT_ACCESS,  OBJ_EXCHANGE, "queuename routingkey");
         RP("QueueHandlerImpl::query",               ACT_ACCESS,  OBJ_QUEUE);
-        RP("QueueHandlerImpl::declare",             ACT_ACCESS,  OBJ_QUEUE, "alternate durable exclusive autodelete policytype maxqueuecount maxqueuesize"); // ?? Why not ACT_CREATE?
+        RP("QueueHandlerImpl::declare",             ACT_ACCESS,  OBJ_QUEUE, "alternate durable exclusive autodelete policytype maxqueuecount maxqueuesize");
         RP("QueueHandlerImpl::purge",               ACT_PURGE,   OBJ_QUEUE);
         RP("MessageHandlerImpl::subscribe",         ACT_CONSUME, OBJ_QUEUE);
         RP("Authorise::access",                     ACT_ACCESS,  OBJ_EXCHANGE, "type durable");



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org