diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-12-01 12:39:14 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-12-01 12:39:14 +0000 |
| commit | e9a79b81de730c2346079b2ba8501f58222ee389 (patch) | |
| tree | 96a9da042f225e39cb05cd1b57fdc136f3446808 /java/management | |
| parent | a3f0153ea94ad6a9dddef87947c384f0798f7ec8 (diff) | |
| download | qpid-python-e9a79b81de730c2346079b2ba8501f58222ee389.tar.gz | |
QPID-2243: 0-10 protocol connections do not have a matching JMX MBean to allow management.
Applied patch from Andrew MacBean <andymacbean@gmail.com> and Oleksandr Rudyy<orudyy@gmail.com>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1209052 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/management')
| -rw-r--r-- | java/management/common/src/main/java/org/apache/qpid/management/common/mbeans/ManagedConnection.java | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/java/management/common/src/main/java/org/apache/qpid/management/common/mbeans/ManagedConnection.java b/java/management/common/src/main/java/org/apache/qpid/management/common/mbeans/ManagedConnection.java index d16db65d5d..c2900a3533 100644 --- a/java/management/common/src/main/java/org/apache/qpid/management/common/mbeans/ManagedConnection.java +++ b/java/management/common/src/main/java/org/apache/qpid/management/common/mbeans/ManagedConnection.java @@ -80,33 +80,12 @@ public interface ManagedConnection Date getLastIoTime(); /** - * Tells the total number of bytes written till now. - * @return number of bytes written. - * - @MBeanAttribute(name="WrittenBytes", description="The total number of bytes written till now") - Long getWrittenBytes(); - */ - /** - * Tells the total number of bytes read till now. - * @return number of bytes read. - * - @MBeanAttribute(name="ReadBytes", description="The total number of bytes read till now") - Long getReadBytes(); - */ - - /** * Threshold high value for no of channels. This is useful in setting notifications or * taking required action is there are more channels being created. * @return threshold limit for no of channels */ - Long getMaximumNumberOfChannels(); - - /** - * Sets the threshold high value for number of channels for a connection - * @param value - */ @MBeanAttribute(name="MaximumNumberOfChannels", description="The threshold high value for number of channels for this connection") - void setMaximumNumberOfChannels(Long value); + Long getMaximumNumberOfChannels(); //********** Operations *****************// |
