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 | e09aa59ff09fb86b15a6ab0402e5c73e37ffaed9 (patch) | |
| tree | 3b849ccdfef76d4ed0c69cd55d036a852ce7fe61 /qpid/java | |
| parent | ce7b4ca4077e6463db212d467a848f27fe3b039e (diff) | |
| download | qpid-python-e09aa59ff09fb86b15a6ab0402e5c73e37ffaed9.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@757258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ManagedQueue.java | 6 |
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; /** |
