Added toString so that object is esier to view under a debugger.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@376855 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-02-10 21:10:14 +00:00
parent d86f77f462
commit 404c73bcc5
1 changed files with 4 additions and 0 deletions

View File

@ -39,4 +39,8 @@ public class SubscriptionKey {
return false;
}
}
public String toString() {
return clientId+":"+subscriptionName;
}
}