You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2007/04/20 15:59:28 UTC

svn commit: r530812 - /incubator/qpid/branches/M2/java/broker/src/main/java/org/apache/qpid/server/security/access/UserManagement.java

Author: ritchiem
Date: Fri Apr 20 06:59:27 2007
New Revision: 530812

URL: http://svn.apache.org/viewvc?view=rev&rev=530812
Log:
QPID-471 User list not populated. 
This was due to the fact that the 'View User' has been marked as an ACTION. Changing to an INFO made the console work just fine.

Modified:
    incubator/qpid/branches/M2/java/broker/src/main/java/org/apache/qpid/server/security/access/UserManagement.java

Modified: incubator/qpid/branches/M2/java/broker/src/main/java/org/apache/qpid/server/security/access/UserManagement.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/M2/java/broker/src/main/java/org/apache/qpid/server/security/access/UserManagement.java?view=diff&rev=530812&r1=530811&r2=530812
==============================================================================
--- incubator/qpid/branches/M2/java/broker/src/main/java/org/apache/qpid/server/security/access/UserManagement.java (original)
+++ incubator/qpid/branches/M2/java/broker/src/main/java/org/apache/qpid/server/security/access/UserManagement.java Fri Apr 20 06:59:27 2007
@@ -112,7 +112,7 @@
      * @return a table of users data (Username, read, write, admin)
      */
     @MBeanOperation(name = "viewUsers", description = "All users with access rights to the system.",
-                    impact = MBeanOperationInfo.ACTION)
+                    impact = MBeanOperationInfo.INFO)
     TabularData viewUsers();
 
 }