summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-04-13 14:09:49 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-04-13 14:09:49 +0000
commit4e26b3c3e1eab49d04b763beb57a3174afb6396b (patch)
tree55f576c0a49b027a21e9c2d8ec680e0f80985993
parent3100cbd0a3e7979b6ca80c230a334eaa9948feec (diff)
downloadqpid-python-4e26b3c3e1eab49d04b763beb57a3174afb6396b.tar.gz
QPID-1767: add units to message age attribute description
Merged from branches/0.5-release : r757257 merged from trunk r757258 git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.5-fix@764476 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java
index 53e249f210..d91d45a446 100644
--- a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java
+++ b/qpid/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;
/**