[jboss-cvs] JBossAS SVN: r60050 - trunk/cluster/src/etc.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Jan 27 14:34:15 EST 2007


Author: bstansberry at jboss.com
Date: 2007-01-27 14:34:15 -0500 (Sat, 27 Jan 2007)
New Revision: 60050

Modified:
   trunk/cluster/src/etc/cluster-beans.xml
Log:
Temporarily remove property replacement in annotation tags

Modified: trunk/cluster/src/etc/cluster-beans.xml
===================================================================
--- trunk/cluster/src/etc/cluster-beans.xml	2007-01-27 19:22:37 UTC (rev 60049)
+++ trunk/cluster/src/etc/cluster-beans.xml	2007-01-27 19:34:15 UTC (rev 60050)
@@ -74,8 +74,8 @@
     
    <!-- Add a handle to the cache to JMX -->
    <bean name="DefaultPartition-HAPartitionCache" class="org.jboss.cache.jmx.CacheJmxWrapper">
-   
-      <annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss.cache:service=HAPartitionCache,partitionName=${jboss.partition.name:DefaultPartition}", exposedInterface=org.jboss.cache.jmx.CacheJmxWrapperMBean.class, registerDirectly=true)</annotation>
+      <!-- FIXME restore the property replacement on the partition name once JBMICROCONT-143 is fixed -->
+      <annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss.cache:service=HAPartitionCache,partitionName=DefaultPartition", exposedInterface=org.jboss.cache.jmx.CacheJmxWrapperMBean.class, registerDirectly=true)</annotation>
       
       <property name="configuration"><inject bean="DefaultPartition-HAPartitionCacheConfig"/></property>
         
@@ -88,7 +88,8 @@
    <bean name="DistributedState"
    		 class="org.jboss.ha.framework.server.DistributedStateImpl">
       
-      <annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss:service=DistributedState,partitionName=${jboss.partition.name:DefaultPartition}", exposedInterface=org.jboss.ha.framework.server.DistributedStateImplMBean.class, registerDirectly=true)</annotation>
+      <!-- FIXME restore the property replacement on the partition name once JBMICROCONT-143 is fixed -->
+      <annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss:service=DistributedState,partitionName=DefaultPartition", exposedInterface=org.jboss.ha.framework.server.DistributedStateImplMBean.class, registerDirectly=true)</annotation>
       
           
       <property name="clusteredCache"><inject bean="DefaultPartition-HAPartitionCache" property="cache"/></property>
@@ -102,7 +103,8 @@
    <bean name="HAPartition"
    		 class="org.jboss.ha.framework.server.ClusterPartition">     
    		 
-   	<annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss:service=${jboss.partition.name:DefaultPartition}", exposedInterface=org.jboss.ha.framework.server.ClusterPartitionMBean.class)</annotation>
+   	<!-- FIXME restore the property replacement on the partition name once JBMICROCONT-143 is fixed -->
+    <annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss:service=DefaultPartition", exposedInterface=org.jboss.ha.framework.server.ClusterPartitionMBean.class)</annotation>
       
    	<constructor>
    	   <parameter>




More information about the jboss-cvs-commits mailing list