summaryrefslogtreecommitdiff
path: root/qpid/java/common/src
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2007-01-25 17:09:32 +0000
committerMartin Ritchie <ritchiem@apache.org>2007-01-25 17:09:32 +0000
commit4c408e494fa38aa27c65a1cb30bd7b61eb7a9ae5 (patch)
tree4b7ee12e0448bb786128e28c9278b5635decb0bd /qpid/java/common/src
parent3b38933380a6583004a8b19511a6e056114dd811 (diff)
downloadqpid-python-4c408e494fa38aa27c65a1cb30bd7b61eb7a9ae5.tar.gz
Revision: 496384
Author: bhupendrab Date: 16:10:59, 15 January 2007 Message: QPID-295 ---- Modified : /incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/AMQQueueMBean.java Modified : /incubator/qpid/trunk/qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/perftesting@499855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common/src')
-rw-r--r--qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java15
1 files changed, 13 insertions, 2 deletions
diff --git a/qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java b/qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java
index fc80d93f82..a8571ccfbd 100644
--- a/qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java
+++ b/qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java
@@ -245,7 +245,7 @@ public class BasicContentHeaderProperties implements ContentHeaderProperties
}
public void populatePropertiesFromBuffer(ByteBuffer buffer, int propertyFlags, int size)
- throws AMQFrameDecodingException, AMQProtocolVersionException
+ throws AMQFrameDecodingException, AMQProtocolVersionException
{
_propertyFlags = propertyFlags;
@@ -619,6 +619,17 @@ public class BasicContentHeaderProperties implements ContentHeaderProperties
public String toString()
{
- return "reply-to = " + _replyTo + " propertyFlags = " + _propertyFlags;
+ return "reply-to = " + _replyTo +
+ ",propertyFlags = " + _propertyFlags +
+ ",ApplicationID = " + _appId +
+ ",ClusterID = " + _clusterId +
+ ",UserId = " + _userId +
+ ",JMSMessageID = " + _messageId +
+ ",JMSCorrelationID = " + _correlationId +
+ ",JMSDeliveryMode = " + _deliveryMode +
+ ",JMSExpiration = " + _expiration +
+ ",JMSPriority = " + _priority +
+ ",JMSTimestamp = " + _timestamp +
+ ",JMSType = " + _type;
}
}