diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2010-01-28 02:05:18 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2010-01-28 02:05:18 +0000 |
| commit | ced42b83b5bcc435db7163a06f6992162b958009 (patch) | |
| tree | 454fc27ce5387218478b0bc3bc34ccb3bc9c3134 /java/common/src | |
| parent | 1b680b84389cfdc5873e7fcc7bf41e8e06355304 (diff) | |
| download | qpid-python-ced42b83b5bcc435db7163a06f6992162b958009.tar.gz | |
This is related to QPID-2363
I added use_legacy_map_msg_format as a connection paramter to force the client to use the old map message format.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@903940 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src')
| -rw-r--r-- | java/common/src/main/java/org/apache/configuration/ClientProperties.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/common/src/main/java/org/apache/configuration/ClientProperties.java b/java/common/src/main/java/org/apache/configuration/ClientProperties.java index 29d07eade7..90eec34713 100644 --- a/java/common/src/main/java/org/apache/configuration/ClientProperties.java +++ b/java/common/src/main/java/org/apache/configuration/ClientProperties.java @@ -82,7 +82,9 @@ public class ClientProperties extends PropertyNameResolver * Currently the two types are Binding URL (java only) and the Addressing format (used by * all clients). */ - public static final String DEST_SYNTAX = "dest_syntax"; + public static final String DEST_SYNTAX = "qpid.dest_syntax"; + + public static final String USE_LEGACY_MAP_MESSAGE_FORMAT = "qpid.use_legacy_map_message"; /** * ========================================================== |
