diff options
author | Bhupendra Bhusman Bhardwaj <bhupendrab@apache.org> | 2007-01-15 16:10:59 +0000 |
---|---|---|
committer | Bhupendra Bhusman Bhardwaj <bhupendrab@apache.org> | 2007-01-15 16:10:59 +0000 |
commit | 23ad76b344c064a926152a6728b0838bbf446f22 (patch) | |
tree | 5cf803e33209dc290d0711ff37e80f230da6e6a6 /java/common | |
parent | 722425e4d5db1e01f2d4ff2e46d03e1187da8407 (diff) | |
download | qpid-python-23ad76b344c064a926152a6728b0838bbf446f22.tar.gz |
QPID-295
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@496384 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common')
-rw-r--r-- | java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java b/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java index 7c881c5a78..b891c914ec 100644 --- a/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java +++ b/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java @@ -638,7 +638,18 @@ 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; } // MapMessage Interface |