mirror of https://github.com/apache/activemq.git
added toString() method
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@514772 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd7d59c38f
commit
8be526c5ec
|
@ -60,4 +60,8 @@ public class ReferenceRecord{
|
||||||
public void setMessageId(String messageId){
|
public void setMessageId(String messageId){
|
||||||
this.messageId=messageId;
|
this.messageId=messageId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return "ReferenceRecord(id=" + messageId + ",data=" + data +")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue