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
commit4b68c719190915825b9745505ea8da71014e6d15 (patch)
tree09f9e527496e8fca2b60e4bfdc73329c8ca2957d /java/common/src
parent2ef622c7b092da7e02dedcd81086ab2b8ae1e39e (diff)
downloadqpid-python-4b68c719190915825b9745505ea8da71014e6d15.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("*");
}