[jboss-svn-commits] JBL Code SVN: r25143 - labs/jbossesb/trunk/product/install/embedded-console.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Feb 6 11:36:10 EST 2009


Author: tcunning
Date: 2009-02-06 11:36:10 -0500 (Fri, 06 Feb 2009)
New Revision: 25143

Removed:
   labs/jbossesb/trunk/product/install/embedded-console/barrier-service.xml
Log:
JBESB-2040
Remove barrier-service.xml - it's no longer needed.


Deleted: labs/jbossesb/trunk/product/install/embedded-console/barrier-service.xml
===================================================================
--- labs/jbossesb/trunk/product/install/embedded-console/barrier-service.xml	2009-02-06 16:02:26 UTC (rev 25142)
+++ labs/jbossesb/trunk/product/install/embedded-console/barrier-service.xml	2009-02-06 16:36:10 UTC (rev 25143)
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Id:$ -->
-
-<server>
-  <!--
-    In this example we have the BarrierController controlling a Barrier
-    that is started when we receive the "org.jboss.system.server.started"
-    notification from the server mbean, and stopped when we receive the
-    "org.jboss.system.server.stopped" notification from the server mbean.
-    
-    The dependent services need only define a dependency on the Barrier mbean!
-  -->
-  <mbean code="org.jboss.system.BarrierController"
-         name="jboss:service=BarrierController">
-    
-    <!-- Whether to have the Barrier initially started or not -->
-    <attribute name="BarrierEnabledOnStartup">false</attribute>
-    
-    <!-- Whether to subscribe for notifications after startup -->
-    <attribute name="DynamicSubscriptions">true</attribute>
-    
-    <!-- Dependent services will depend on this mbean -->
-    <attribute name="BarrierObjectName">jboss:name=Server,type=Barrier</attribute>
-    
-    <!-- The notification subscription handback that starts the barrier -->
-    <attribute name="StartBarrierHandback">start</attribute>
-    
-    <!-- The notification subscription handback that stops the barrier -->
-    <attribute name="StopBarrierHandback">stop</attribute>
-    
-    <!-- The notifications to subscribe for, along with their handbacks -->
-    <attribute name="SubscriptionList">
-      <subscription-list>
-        <mbean name="jboss.system:type=Server" handback="start">
-          <filter factory="NotificationFilterSupportFactory">
-            <enable type="org.jboss.system.server.started"/>
-          </filter>
-        </mbean>
-        <mbean name="jboss.system:type=Server" handback="stop">
-          <filter factory="NotificationFilterSupportFactory">
-            <enable type="org.jboss.system.server.stopped"/>
-          </filter>
-        </mbean>        
-      </subscription-list>
-    </attribute>
-  </mbean>
-
- 
-</server>




More information about the jboss-svn-commits mailing list