[jboss-cvs] JBoss Messaging SVN: r3321 - in branches/Branch_MC_Integration_New/src/etc/server/standalone: config and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 13 13:26:17 EST 2007


Author: ataylor
Date: 2007-11-13 13:26:17 -0500 (Tue, 13 Nov 2007)
New Revision: 3321

Removed:
   branches/Branch_MC_Integration_New/src/etc/server/standalone/config/bindings.xml
   branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mbeansupport.xml
   branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mysql-beans.xml
   branches/Branch_MC_Integration_New/src/etc/server/standalone/config/naming.xml
   branches/Branch_MC_Integration_New/src/etc/server/standalone/config/tm-beans.xml
   branches/Branch_MC_Integration_New/src/etc/server/standalone/deploy/
Log:
initial microcontainer integration, removed unwanted config files

Deleted: branches/Branch_MC_Integration_New/src/etc/server/standalone/config/bindings.xml
===================================================================
--- branches/Branch_MC_Integration_New/src/etc/server/standalone/config/bindings.xml	2007-11-13 18:22:45 UTC (rev 3320)
+++ branches/Branch_MC_Integration_New/src/etc/server/standalone/config/bindings.xml	2007-11-13 18:26:17 UTC (rev 3321)
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-    <!--<bean name="Naming" class="org.jnp.server.SingletonNamingServer"/>-->
-
-
-
-   <bean name="topicBinding" class="org.jboss.jms.server.microcontainer.JndiBinder">
-      <property name="jndiProperties"><inject bean="InitialContextProperties"/></property>
-      <property name="target"><inject bean="topic"/></property>
-      <property name="bindTo">topic</property>
-      <property name="serializable">false</property>
-   </bean>
-</deployment>
\ No newline at end of file

Deleted: branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mbeansupport.xml
===================================================================
--- branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mbeansupport.xml	2007-11-13 18:22:45 UTC (rev 3320)
+++ branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mbeansupport.xml	2007-11-13 18:26:17 UTC (rev 3321)
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
-    <bean name="MBeanServer" class="java.lang.Object">
-        <constructor factoryClass="org.jboss.jms.server.microcontainer.factory.mBeanServerCreator"
-                     factoryMethod="createMBeanServer"/>
-    </bean>
-    
-    <aop:lifecycle-configure xmlns:aop="urn:jboss:aop-beans:1.0"
-                             name="DependencyAdvice"
-                             class="org.jboss.aop.microcontainer.aspects.jmx.JMXLifecycleCallback"
-                             classes="@org.jboss.aop.microcontainer.aspects.jmx.JMX">
-        <property name="mbeanServer">
-            <inject bean="MBeanServer"/>
-        </property>
-    </aop:lifecycle-configure>
-
-    <bean class="com.arjuna.ats.jbossatx.jta.TransactionManagerService"
-          name="TransactionManager">
-        <property name="transactionTimeout">300</property>
-        <property name="objectStoreDir">tx-object-store</property>
-        <annotation>@org.jboss.aop.microcontainer.aspects.jmx.JMX(name="jboss:service=TransactionManager",exposedInterface=com.arjuna.ats.jbossatx.jta.TransactionManagerServiceMBean.class)
-        </annotation>
-    </bean>
-    <!-- <bean name="Repository" class="org.jboss.metadata.plugins.repository.basic.BasicMetaDataRepository"/>
-    -->
-    <!--<bean name="AspectManager" class="org.jboss.aop.AspectManager">
-       <constructor factoryClass="org.jboss.aop.AspectManager" factoryMethod="instance"/>
-    </bean>-->
-
-</deployment>
\ No newline at end of file

Deleted: branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mysql-beans.xml
===================================================================
--- branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mysql-beans.xml	2007-11-13 18:22:45 UTC (rev 3320)
+++ branches/Branch_MC_Integration_New/src/etc/server/standalone/config/mysql-beans.xml	2007-11-13 18:26:17 UTC (rev 3321)
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
-    <bean name="DataSource" class="com.mysql.jdbc.jdbc2.optional.MysqlDataSource">
-        <property name="url">jdbc:mysql://localhost:3306/messaging</property>
-        <property name="user">andy</property>
-    </bean>
-
-</deployment>

Deleted: branches/Branch_MC_Integration_New/src/etc/server/standalone/config/naming.xml
===================================================================
--- branches/Branch_MC_Integration_New/src/etc/server/standalone/config/naming.xml	2007-11-13 18:22:45 UTC (rev 3320)
+++ branches/Branch_MC_Integration_New/src/etc/server/standalone/config/naming.xml	2007-11-13 18:26:17 UTC (rev 3321)
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-    <bean name="Naming" class="org.jnp.server.SingletonNamingServer"/>
-
-    <bean name="InitialContextProperties" class="java.util.Hashtable">
-        <constructor>
-            <parameter class="java.util.Map">
-                <map keyClass="java.lang.String" valueClass="java.lang.String">
-                    <entry>
-                        <key>java.naming.factory.initial</key>
-                        <value>org.jnp.interfaces.LocalOnlyContextFactory</value>
-                    </entry>
-                    <entry>
-                        <key>java.naming.factory.url.pkgs</key>
-                        <value>org.jboss.naming:org.jnp.interfaces</value>
-                    </entry>
-                </map>
-            </parameter>
-        </constructor>
-    </bean>
-
-    <bean name="JaasBinding" class="org.jboss.jms.server.microcontainer.JndiBinder">
-      <property name="jndiProperties"><inject bean="InitialContextProperties"/></property>
-      <property name="target"><inject bean="Jaas"/></property>
-      <property name="bindTo">java:/jaas/messaging</property>
-      <property name="serializable">false</property>
-   </bean>
-
-    <bean name="Jaas" class="org.jboss.jms.server.microcontainer.AuthenticationManager"/>
-
-</deployment>
\ No newline at end of file

Deleted: branches/Branch_MC_Integration_New/src/etc/server/standalone/config/tm-beans.xml
===================================================================
--- branches/Branch_MC_Integration_New/src/etc/server/standalone/config/tm-beans.xml	2007-11-13 18:22:45 UTC (rev 3320)
+++ branches/Branch_MC_Integration_New/src/etc/server/standalone/config/tm-beans.xml	2007-11-13 18:26:17 UTC (rev 3321)
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
-     <bean name="jboss:service=TransactionManager" class="com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionManagerImple"/>
-
-</deployment>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list