summaryrefslogtreecommitdiff
path: root/qpid/java/client/src/old_test
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2007-03-16 14:46:42 +0000
committerMartin Ritchie <ritchiem@apache.org>2007-03-16 14:46:42 +0000
commit394322f25d041bab8617b1a7b96e2dd49835e93b (patch)
treeedee6539c123abf532521c973f3a68c5fce37492 /qpid/java/client/src/old_test
parente82b9aad31d0e67df8f9bbb82c39715e020b521f (diff)
downloadqpid-python-394322f25d041bab8617b1a7b96e2dd49835e93b.tar.gz
QPID-70 InVM Authentication QPID-419 Access Control QPID-423 Authentication per virtualhost
Restructured auth package. Enabled InVM Authentication Initial changes to allow authenticators per virtualhost. Initial access control classes. Initial work to allow access control testing through inVM broker. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@518988 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client/src/old_test')
-rw-r--r--qpid/java/client/src/old_test/java/org/apache/qpid/flow/ChannelFlowTest.java2
-rw-r--r--qpid/java/client/src/old_test/java/org/apache/qpid/latency/LatencyTest.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/client/src/old_test/java/org/apache/qpid/flow/ChannelFlowTest.java b/qpid/java/client/src/old_test/java/org/apache/qpid/flow/ChannelFlowTest.java
index aba2d5d657..cb8adae18c 100644
--- a/qpid/java/client/src/old_test/java/org/apache/qpid/flow/ChannelFlowTest.java
+++ b/qpid/java/client/src/old_test/java/org/apache/qpid/flow/ChannelFlowTest.java
@@ -38,7 +38,7 @@ public class ChannelFlowTest implements MessageListener
ChannelFlowTest(String broker) throws Exception
{
- this(new AMQConnection(broker, "guest", "guest", randomize("Client"), "/test_path"));
+ this(new AMQConnection(broker, "guest", "guest", randomize("Client"), "/test"));
}
ChannelFlowTest(AMQConnection connection) throws Exception
diff --git a/qpid/java/client/src/old_test/java/org/apache/qpid/latency/LatencyTest.java b/qpid/java/client/src/old_test/java/org/apache/qpid/latency/LatencyTest.java
index 8d833f4d4c..4865a68dc4 100644
--- a/qpid/java/client/src/old_test/java/org/apache/qpid/latency/LatencyTest.java
+++ b/qpid/java/client/src/old_test/java/org/apache/qpid/latency/LatencyTest.java
@@ -48,7 +48,7 @@ public class LatencyTest implements MessageListener
LatencyTest(String broker, int count, int delay, int length) throws Exception
{
- this(new AMQConnection(broker, "guest", "guest", randomize("Client"), "/test_path"), count, delay, length);
+ this(new AMQConnection(broker, "guest", "guest", randomize("Client"), "/test"), count, delay, length);
}
LatencyTest(AMQConnection connection, int count, int delay, int length) throws Exception