summaryrefslogtreecommitdiff
path: root/java/client/src/main/java/org/apache/qpid/client/AMQQueue.java
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2011-10-14 22:29:03 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2011-10-14 22:29:03 +0000
commit390b6b48b9808a1862b48b3e324451b95f465ed4 (patch)
tree8190d53d1c3d3022690be7a0b39dd848331a74e0 /java/client/src/main/java/org/apache/qpid/client/AMQQueue.java
parentc77eff7738c4bd8424fd2205788a3f34ace13df5 (diff)
downloadqpid-python-390b6b48b9808a1862b48b3e324451b95f465ed4.tar.gz
QPID-3401 Checking the proposed changes into a branch to preserve history & continue working until such time it's accepted into trunk.address-refactor
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/address-refactor@1183532 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src/main/java/org/apache/qpid/client/AMQQueue.java')
-rw-r--r--java/client/src/main/java/org/apache/qpid/client/AMQQueue.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/AMQQueue.java b/java/client/src/main/java/org/apache/qpid/client/AMQQueue.java
index 5bd1bd629a..a1a5a3c7a6 100644
--- a/java/client/src/main/java/org/apache/qpid/client/AMQQueue.java
+++ b/java/client/src/main/java/org/apache/qpid/client/AMQQueue.java
@@ -30,12 +30,6 @@ import org.apache.qpid.url.BindingURL;
public class AMQQueue extends AMQDestination implements Queue
{
-
- public AMQQueue(String address) throws URISyntaxException
- {
- super(address);
- }
-
/**
* Create a reference to a non temporary queue using a BindingURL object.
* Note this does not actually imply the queue exists.
@@ -149,6 +143,12 @@ public class AMQQueue extends AMQDestination implements Queue
super(exchangeName, ExchangeDefaults.DIRECT_EXCHANGE_CLASS, routingKey, exclusive,
autoDelete, queueName, durable, bindingKeys);
}
+
+ public AMQQueue(AMQShortString exchangeName, AMQShortString exchangeClass, AMQShortString routingKey, AMQShortString queueName, boolean exclusive, boolean autoDelete, boolean durable,AMQShortString[] bindingKeys)
+ {
+ super(exchangeName, exchangeClass, routingKey, exclusive,
+ autoDelete, queueName, durable, bindingKeys);
+ }
public AMQShortString getRoutingKey()
{