diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2010-02-03 17:31:04 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2010-02-03 17:31:04 +0000 |
| commit | b3ef5ba7d29d82d7371553c56e77b9e38f986e57 (patch) | |
| tree | 00eb2700c6ecea1cf2ca9db4f27104a378381757 /java/client/src/test | |
| parent | 9c24857371fac993e3f3a22d10a426d5734f2368 (diff) | |
| download | qpid-python-b3ef5ba7d29d82d7371553c56e77b9e38f986e57.tar.gz | |
This is related to QPID-1831
I added the patch attached to the above JIRA with modifications.
The modifications include integration with the address parser added by Rafi, and several refactoring and bug fixes to the original patch.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@906142 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src/test')
| -rw-r--r-- | java/client/src/test/java/org/apache/qpid/test/unit/message/TestAMQSession.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/test/unit/message/TestAMQSession.java b/java/client/src/test/java/org/apache/qpid/test/unit/message/TestAMQSession.java index 9b2a6693e1..dd8377a94a 100644 --- a/java/client/src/test/java/org/apache/qpid/test/unit/message/TestAMQSession.java +++ b/java/client/src/test/java/org/apache/qpid/test/unit/message/TestAMQSession.java @@ -175,4 +175,12 @@ public class TestAMQSession extends AMQSession<BasicMessageConsumer_0_8, BasicMe public void sync() { } + + public void handleAddressBasedDestination(AMQDestination dest, + boolean isConsumer, + boolean noWait) throws AMQException + { + throw new UnsupportedOperationException("The new addressing based sytanx is " + + "not supported for AMQP 0-8/0-9 versions"); + } } |
