diff options
author | Robert Gemmell <robbie@apache.org> | 2009-03-22 21:24:00 +0000 |
---|---|---|
committer | Robert Gemmell <robbie@apache.org> | 2009-03-22 21:24:00 +0000 |
commit | 389cb25e5648a3f05fb1b2ee301df7d7334ca4ee (patch) | |
tree | 8cec8c9c647bf069979d6b460e06eed7da7cb67f /java | |
parent | 5c6817e0ae7e761fd654daa7e1ccdcc3f6709a0a (diff) | |
download | qpid-python-389cb25e5648a3f05fb1b2ee301df7d7334ca4ee.tar.gz |
QPID-1767: add units to message age attribute description
Merged from branches/0.5-release : r757257
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@757258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r-- | java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java b/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java index 53e249f210..d91d45a446 100644 --- a/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java +++ b/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java @@ -116,18 +116,18 @@ public interface ManagedQueue boolean isAutoDelete() throws IOException; /** - * Returns the maximum age of a message (expiration time) + * Returns the maximum age of a message (expiration time) in milliseconds * @return the maximum age * @throws IOException */ Long getMaximumMessageAge() throws IOException; /** - * Sets the maximum age of a message + * Sets the maximum age of a message in milliseconds * @param age maximum age of message. * @throws IOException */ - @MBeanAttribute(name="MaximumMessageAge", description="Threshold high value for message age on the broker") + @MBeanAttribute(name="MaximumMessageAge", description="Threshold high value(milliseconds) for message age") void setMaximumMessageAge(Long age) throws IOException; /** |