[hornetq-commits] JBoss hornetq SVN: r8746 - in trunk/examples: jms/jms-bridge/server1 and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Jan 6 09:51:44 EST 2010


Author: jmesnil
Date: 2010-01-06 09:51:44 -0500 (Wed, 06 Jan 2010)
New Revision: 8746

Modified:
   trunk/examples/javaee/jms-bridge/server/jms-bridge-jboss-beans.xml
   trunk/examples/jms/jms-bridge/server1/hornetq-beans.xml
Log:
fixed jms/jms-bridge & javaee/bridge examples

* fixed references to bridge classes

Modified: trunk/examples/javaee/jms-bridge/server/jms-bridge-jboss-beans.xml
===================================================================
--- trunk/examples/javaee/jms-bridge/server/jms-bridge-jboss-beans.xml	2010-01-06 14:51:39 UTC (rev 8745)
+++ trunk/examples/javaee/jms-bridge/server/jms-bridge-jboss-beans.xml	2010-01-06 14:51:44 UTC (rev 8746)
@@ -2,7 +2,7 @@
 
 <deployment xmlns="urn:jboss:bean-deployer:2.0">
 
-       <bean name="JMSBridge" class="org.hornetq.api.jms.bridge.impl.JMSBridgeImpl">
+       <bean name="JMSBridge" class="org.hornetq.jms.bridge.impl.JMSBridgeImpl">
            <!-- HornetQ must be started before the bridge -->
            <depends>HornetQServer</depends>
            <constructor>
@@ -62,7 +62,7 @@
        </bean>
 
        <!-- SourceCFF describes the ConnectionFactory used to connect to the source destination -->
-       <bean name="SourceCFF" class="org.hornetq.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
+       <bean name="SourceCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">
            <constructor>
                <parameter>
                    <inject bean="JNDI" />
@@ -72,7 +72,7 @@
        </bean>
 
        <!-- TargetCFF describes the ConnectionFactory used to connect to the target destination -->
-       <bean name="TargetCFF" class="org.hornetq.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
+       <bean name="TargetCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">
            <constructor>
                <parameter>
                    <inject bean="JNDI" />
@@ -82,7 +82,7 @@
        </bean>
 
        <!-- SourceDestinationFactory describes the Destination used as the source -->
-       <bean name="SourceDestinationFactory" class="org.hornetq.api.jms.bridge.impl.JNDIDestinationFactory">
+       <bean name="SourceDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">
            <constructor>
                <parameter>
                    <inject bean="JNDI" />
@@ -92,7 +92,7 @@
        </bean>
 
        <!-- TargetDestinationFactory describes the Destination used as the target -->
-       <bean name="TargetDestinationFactory" class="org.hornetq.api.jms.bridge.impl.JNDIDestinationFactory">
+       <bean name="TargetDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">
            <constructor>
                <parameter>
                    <inject bean="JNDI" />

Modified: trunk/examples/jms/jms-bridge/server1/hornetq-beans.xml
===================================================================
--- trunk/examples/jms/jms-bridge/server1/hornetq-beans.xml	2010-01-06 14:51:39 UTC (rev 8745)
+++ trunk/examples/jms/jms-bridge/server1/hornetq-beans.xml	2010-01-06 14:51:44 UTC (rev 8746)
@@ -63,7 +63,7 @@
    </bean>
    
    <!-- The JMS Bridge -->
-   <bean name="JMSBridge" class="org.hornetq.api.jms.bridge.impl.JMSBridgeImpl">
+   <bean name="JMSBridge" class="org.hornetq.jms.bridge.impl.JMSBridgeImpl">
            <constructor>
                <!-- Source ConnectionFactory Factory -->
                <parameter>
@@ -126,7 +126,7 @@
        </bean>
 
        <!-- SourceCFF describes the ConnectionFactory used to connect to the source destination -->
-       <bean name="SourceCFF" class="org.hornetq.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
+       <bean name="SourceCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">
            <constructor>
                <parameter>
                    <inject bean="SourceJNDI" />
@@ -136,7 +136,7 @@
        </bean>
 
        <!-- TargetCFF describes the ConnectionFactory used to connect to the target destination -->
-       <bean name="TargetCFF" class="org.hornetq.api.jms.bridge.impl.JNDIConnectionFactoryFactory">
+       <bean name="TargetCFF" class="org.hornetq.jms.bridge.impl.JNDIConnectionFactoryFactory">
            <constructor>
                <parameter>
                    <inject bean="TargetJNDI" />
@@ -146,7 +146,7 @@
        </bean>
 
        <!-- SourceDestinationFactory describes the Destination used as the source -->
-       <bean name="SourceDestinationFactory" class="org.hornetq.api.jms.bridge.impl.JNDIDestinationFactory">
+       <bean name="SourceDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">
            <constructor>
                <parameter>
                    <inject bean="SourceJNDI" />
@@ -156,7 +156,7 @@
        </bean>
 
        <!-- TargetDestinationFactory describes the Destination used as the target -->
-       <bean name="TargetDestinationFactory" class="org.hornetq.api.jms.bridge.impl.JNDIDestinationFactory">
+       <bean name="TargetDestinationFactory" class="org.hornetq.jms.bridge.impl.JNDIDestinationFactory">
            <constructor>
                <parameter>
                    <inject bean="TargetJNDI" />



More information about the hornetq-commits mailing list