[jboss-cvs] JBossAS SVN: r86776 - branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Apr 4 07:05:02 EDT 2009


Author: emuckenhuber
Date: 2009-04-04 07:05:02 -0400 (Sat, 04 Apr 2009)
New Revision: 86776

Modified:
   branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/QueueServiceMO.java
   branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/TopicServiceMO.java
Log:
[JBAS-6721] name should be viewUse.Configuration

Modified: branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/QueueServiceMO.java
===================================================================
--- branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/QueueServiceMO.java	2009-04-04 10:05:21 UTC (rev 86775)
+++ branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/QueueServiceMO.java	2009-04-04 11:05:02 UTC (rev 86776)
@@ -59,9 +59,9 @@
 
 // Management Properties
    
-   @ManagementProperty(use={ViewUse.STATISTIC},
+   @ManagementProperty(use={ViewUse.CONFIGURATION},
          description="The destination name",
-         includeInTemplate=true, mandatory=true)
+         includeInTemplate=true, mandatory=true, readOnly=true)
    public String getName() { return null; }   
 
    @ManagementProperty(use={ViewUse.CONFIGURATION},

Modified: branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/TopicServiceMO.java
===================================================================
--- branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/TopicServiceMO.java	2009-04-04 10:05:21 UTC (rev 86775)
+++ branches/Branch_5_x/messaging/src/main/org/jboss/jms/server/destination/TopicServiceMO.java	2009-04-04 11:05:02 UTC (rev 86776)
@@ -57,9 +57,9 @@
    
    // Management Properties
    
-   @ManagementProperty(use={ViewUse.STATISTIC},
+   @ManagementProperty(use={ViewUse.CONFIGURATION},
          description="The destination name",
-         mandatory=true, includeInTemplate=true)
+         mandatory=true, includeInTemplate=true, readOnly=true)
    public String getName() { return null; }   
 
    @ManagementProperty(use={ViewUse.CONFIGURATION},




More information about the jboss-cvs-commits mailing list