[jboss-cvs] JBossAS SVN: r65304 - trunk/cluster/src/resources/jgroups.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Sep 11 14:18:20 EDT 2007


Author: bstansberry at jboss.com
Date: 2007-09-11 14:18:20 -0400 (Tue, 11 Sep 2007)
New Revision: 65304

Removed:
   trunk/cluster/src/resources/jgroups/jboss-service.xml
   trunk/cluster/src/resources/jgroups/multiplexer-xmbean.xml
Log:
Remove outdated config files

Deleted: trunk/cluster/src/resources/jgroups/jboss-service.xml
===================================================================
--- trunk/cluster/src/resources/jgroups/jboss-service.xml	2007-09-11 18:10:45 UTC (rev 65303)
+++ trunk/cluster/src/resources/jgroups/jboss-service.xml	2007-09-11 18:18:20 UTC (rev 65304)
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE server
-        PUBLIC "-//JBoss//DTD MBean Service 3.2//EN"
-        "http://www.jboss.org/j2ee/dtd/jboss-service_3_2.dtd">
-
-
-<server>
-
-
-    <!--
-    An example for setting up the JChannelFactory MBean
-    Author: Bela Ban
-    Version: $Id$
-    -->
-    <mbean code="org.jboss.ha.framework.server.JChannelFactory" name="jgroups.mux:name=Multiplexer" xmbean-dd="resource:META-INF/multiplexer-xmbean.xml">
-    <!--mbean code="org.jgroups.JChannelFactory" name="jgroups.mux:name=Multiplexer" xmbean-dd="resource:META-INF/multiplexer-xmbean.xml" -->
-        <attribute name="Domain">jgroups.mux</attribute>
-        <attribute name="MultiplexerConfig">META-INF/multiplexer-stacks.xml</attribute>
-        <attribute name="ExposeChannels">true</attribute>
-        <attribute name="ExposeProtocols">true</attribute>
-        
-        <!-- The address used to determine the node name  -->
-        <attribute name="NodeAddress">${jboss.bind.address}</attribute>
-        
-    </mbean>
-
-
-</server>

Deleted: trunk/cluster/src/resources/jgroups/multiplexer-xmbean.xml
===================================================================
--- trunk/cluster/src/resources/jgroups/multiplexer-xmbean.xml	2007-09-11 18:10:45 UTC (rev 65303)
+++ trunk/cluster/src/resources/jgroups/multiplexer-xmbean.xml	2007-09-11 18:18:20 UTC (rev 65304)
@@ -1,157 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE mbean PUBLIC
-        "-//JBoss//DTD JBOSS XMBEAN 1.0//EN"
-        "http://www.jboss.org/j2ee/dtd/jboss_xmbean_1_0.dtd">
-
-
-<!--
-    An example for setting up the JChannelFactory MBean
-    Author: Bela Ban
-    Version: $Id$
-    -->
-<mbean>
-
-    <description>JGroups Multiplexer</description>
-    
-    
-    <!--class>org.jgroups.jmx.JChannelFactory</class-->
-    <!-- JBAS-3424 remove when JBAS-3425 is resolved -->
-    <class>org.jboss.ha.framework.server.JChannelFactory</class>
-    
-    
-    <!-- Constructors -->
-    <constructor>
-        <description>The default constructor</description>
-        <name>JChannelFactory</name>
-    </constructor>
-
-    <!-- Attributes -->
-    
-    <!-- JBAS-3424 remove when JBAS-3425 is resolved  -->
-    <attribute access="read-write" getMethod="getNodeName" setMethod="setNodeName">
-        <description>The unique name of the node across the partition.</description>
-        <name>NodeName</name>
-        <type>java.lang.String</type>
-    </attribute>
-    <attribute access="read-write" getMethod="getNodeAddress" setMethod="setNodeAddress">
-        <description>The address used to determine the node name</description>
-        <name>NodeAddress</name>
-        <type>java.net.InetAddress</type>
-    </attribute>
-    
-     
-    <attribute access="read-write" getMethod="getDomain" setMethod="setDomain">
-        <description>The domain which is used as prefix for all channels and protocols exposed via JMX</description>
-        <name>Domain</name>
-        <type>java.lang.String</type>
-        <descriptors>
-            <default value="jgroups.mux" />
-        </descriptors>
-    </attribute>
-
-    <attribute access="read-write" getMethod="getMultiplexerConfig" setMethod="setMultiplexerConfig">
-        <description>The file used for configuration. If this is not an absolute pathname, it will need to be found on the classpath</description>
-        <name>MultiplexerConfig</name>
-        <type>java.lang.String</type>
-        <descriptors>
-            <default value="META-INF/multiplexer-stacks.xml" />
-        </descriptors>
-    </attribute>
-
-    <attribute access="read-write" getMethod="isExposeChannels" setMethod="setExposeChannels">
-        <description>Whether or not to expose channels via JMX</description>
-        <name>ExposeChannels</name>
-        <type>boolean</type>
-        <descriptors>
-            <default value="true" />
-        </descriptors>
-    </attribute>
-
-    <attribute access="read-write" getMethod="isExposeProtocols" setMethod="setExposeProtocols">
-        <description>Whether or not to expose protocols via JMX (if true, will set ExposeChannels to true too)</description>
-        <name>ExposeProtocols</name>
-        <type>boolean</type>
-        <descriptors>
-            <default value="true" />
-        </descriptors>
-    </attribute>
-
-
-    <!-- JBoss MBean Life Cycle Operations -->
-    <operation>
-        <description>The create() life cycle operation</description>
-        <name>create</name>
-    </operation>
-
-    <operation>
-        <description>The start lifecycle operation.</description>
-        <name>start</name>
-    </operation>
-
-    <operation>
-        <description>The stop lifecycle operation.</description>
-        <name>stop</name>
-    </operation>
-
-    <operation>
-        <description>The destroy() life cycle operation</description>
-        <name>destroy</name>
-    </operation>
-
-    <!-- Ordinary Operations -->
-    <operation>
-        <description>Dumps the channels</description>
-        <name>dumpChannels</name>
-        <return-type>java.lang.String</return-type>
-    </operation>
-
-    <operation>
-        <description>Dumps the configuration</description>
-        <name>dumpConfiguration</name>
-        <return-type>java.lang.String</return-type>
-    </operation>
-
-    <operation>
-        <description></description>
-        <name>createMultiplexerChannel</name>
-        <parameter>
-            <description>The name of the stack, as defined e.g., in multiplexer-stacks.xml</description>
-            <name>stack_name</name>
-            <type>java.lang.String</type>
-        </parameter>
-        <parameter>
-            <description>The application ID, all IDs need to be unique across a Multiplexer</description>
-            <name>id</name>
-            <type>java.lang.String</type>
-        </parameter>
-        <parameter>
-            <description>Whether this application wants to register for state transfer, getState() will only return when *all* registered listeners called it</description>
-            <name>register_for_state_transfer</name>
-            <type>boolean</type>
-        </parameter>
-        <parameter>
-            <description>The ID of the substate to be retrieved (or null)</description>
-            <name>substate_id</name>
-            <type>java.lang.String</type>
-        </parameter>
-        <return-type>org.jgroups.Channel</return-type>
-    </operation>
-
-    <operation>
-        <description></description>
-        <name>createMultiplexerChannel</name>
-        <parameter>
-            <description>The name of the stack, as defined e.g., in multiplexer-stacks.xml</description>
-            <name>stack_name</name>
-            <type>java.lang.String</type>
-        </parameter>
-        <parameter>
-            <description>The application ID, all IDs need to be unique across a Multiplexer</description>
-            <name>id</name>
-            <type>java.lang.String</type>
-        </parameter>
-        <return-type>org.jgroups.Channel</return-type>
-    </operation>
-
-</mbean>
-




More information about the jboss-cvs-commits mailing list