summaryrefslogtreecommitdiffstats
path: root/java/sca
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-10-16 07:52:48 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-10-16 07:52:48 +0000
commit7de1169cbd1470ff171d7657b32d23962bf21e34 (patch)
tree1a5e766a87079d52b3f0b885d3971459f00314b7 /java/sca
parent6e1fe17f597e9fdfc7778e4f4c89612f145cb28c (diff)
Update itest to compile with new JMSResourceFactory constructor
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@705161 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/itest/jms/src/test/java/org/apache/tuscany/sca/binding/jms/NonSCAClientTestCase.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/sca/itest/jms/src/test/java/org/apache/tuscany/sca/binding/jms/NonSCAClientTestCase.java b/java/sca/itest/jms/src/test/java/org/apache/tuscany/sca/binding/jms/NonSCAClientTestCase.java
index 55e5a84c1c..fc47211f46 100644
--- a/java/sca/itest/jms/src/test/java/org/apache/tuscany/sca/binding/jms/NonSCAClientTestCase.java
+++ b/java/sca/itest/jms/src/test/java/org/apache/tuscany/sca/binding/jms/NonSCAClientTestCase.java
@@ -31,6 +31,7 @@ import javax.naming.NamingException;
import org.apache.activemq.broker.BrokerService;
import org.apache.tuscany.sca.binding.jms.provider.JMSResourceFactory;
+import org.apache.tuscany.sca.binding.jms.provider.JMSResourceFactoryImpl;
import org.apache.tuscany.sca.host.embedded.SCADomain;
import org.junit.After;
import org.junit.Before;
@@ -120,7 +121,7 @@ public class NonSCAClientTestCase {
}
protected static void sendTextMessage(String destName, String payload) throws JMSException, NamingException {
- JMSResourceFactory rf = new JMSResourceFactory(null, null, "tcp://localhost:61618");
+ JMSResourceFactory rf = new JMSResourceFactoryImpl(null, null, "tcp://localhost:61618");
Session session = rf.getConnection().createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageProducer p = session.createProducer(rf.lookupDestination(destName));
rf.getConnection().start();
@@ -130,7 +131,7 @@ public class NonSCAClientTestCase {
}
protected static void sendObjectMessage(String destName, Object payload) throws JMSException, NamingException {
- JMSResourceFactory rf = new JMSResourceFactory(null, null, "tcp://localhost:61618");
+ JMSResourceFactory rf = new JMSResourceFactoryImpl(null, null, "tcp://localhost:61618");
Session session = rf.getConnection().createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageProducer p = session.createProducer(rf.lookupDestination(destName));
rf.getConnection().start();