summaryrefslogtreecommitdiff
path: root/java/client/src
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2010-04-16 17:01:50 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2010-04-16 17:01:50 +0000
commit01c4e84bd5eb1e2647e8c8a531e5180c62cc1c15 (patch)
treeffbfea821dd265ebab3c85a3b30e8ddc0f5bab0e /java/client/src
parent241cf8c40d019d9cbddfbf9554cbc36ec9b07488 (diff)
downloadqpid-python-01c4e84bd5eb1e2647e8c8a531e5180c62cc1c15.tar.gz
QPID-2512
Changed the default destination syntax to addressing. Added qpid.dest_syntax=BURL to the test profiles to ensure all existing tests work. At some point next week the existing binding URL based entries will be prefixed with "BURL:" and the above system property will be removed. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@934997 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src')
-rw-r--r--java/client/src/main/java/org/apache/qpid/client/AMQDestination.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/AMQDestination.java b/java/client/src/main/java/org/apache/qpid/client/AMQDestination.java
index 2d7844944a..593613f962 100644
--- a/java/client/src/main/java/org/apache/qpid/client/AMQDestination.java
+++ b/java/client/src/main/java/org/apache/qpid/client/AMQDestination.java
@@ -146,7 +146,7 @@ public abstract class AMQDestination implements Destination, Referenceable
{
defaultDestSyntax = DestSyntax.getSyntaxType(
System.getProperty(ClientProperties.DEST_SYNTAX,
- DestSyntax.BURL.toString()));
+ DestSyntax.ADDR.toString()));
}
protected AMQDestination(Address address) throws Exception