summaryrefslogtreecommitdiff
path: root/java/common/src
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2010-04-15 19:39:06 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2010-04-15 19:39:06 +0000
commit7836498914eab08ec0eb7b10824deaa4d78db976 (patch)
tree09f9e527496e8fca2b60e4bfdc73329c8ca2957d /java/common/src
parentc9ea7911e448675d483305d15a0d734542d98eb1 (diff)
downloadqpid-python-7836498914eab08ec0eb7b10824deaa4d78db976.tar.gz
This is related to QPID-2496
The changes include support the new addressing structure and most items on the list specified in the JIRA. The following is not included in the commit 1. Add subject as filter in JMS - for exchanges use it as binding key and for queues use it as a selector - this needs to be thought through. Besides JMS already provides a way to handle this. 2. Implementation of DELETE option. Further testing needs to be done to figure out the impact. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@934563 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src')
-rw-r--r--java/common/src/main/java/org/apache/qpid/exchange/ExchangeDefaults.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/exchange/ExchangeDefaults.java b/java/common/src/main/java/org/apache/qpid/exchange/ExchangeDefaults.java
index 123901b577..1989ade4ac 100644
--- a/java/common/src/main/java/org/apache/qpid/exchange/ExchangeDefaults.java
+++ b/java/common/src/main/java/org/apache/qpid/exchange/ExchangeDefaults.java
@@ -62,4 +62,6 @@ public class ExchangeDefaults
/** Defines the identifying type name of fanout exchanges. */
public static final AMQShortString FANOUT_EXCHANGE_CLASS = new AMQShortString("fanout");
+
+ public static final AMQShortString WILDCARD_ANY = new AMQShortString("*");
}