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 | 1a2327b98e6d5b2a65a12b70a9abc3f5ceb0f113 (patch) | |
| tree | 45d618faf6c0dd620ad6fd11b92c27d19f1d2467 /qpid/java/common | |
| parent | ea0eb5e1a4844b6a36a7087239b2e813fc858ebe (diff) | |
| download | qpid-python-1a2327b98e6d5b2a65a12b70a9abc3f5ceb0f113.tar.gz | |
QPID-295
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@496384 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common')
| -rw-r--r-- | qpid/java/common/src/main/java/org/apache/qpid/framing/BasicContentHeaderProperties.java | 13 |
1 files changed, 12 insertions, 1 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 7c881c5a78..b891c914ec 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 @@ -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 |
