Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2012-08-10 22:26:38 +0000
committerJesse McConnell2012-08-10 22:26:38 +0000
commit608e74b9bf575cb7d17977629f6c925fec2367ca (patch)
treea12f2dce392697961d4a5c5f5a7867b1b5bbbce2
parent752a2e7d64d23ae83a21a0f7328a3b53c14821c9 (diff)
downloadorg.eclipse.jetty.project-608e74b9bf575cb7d17977629f6c925fec2367ca.tar.gz
org.eclipse.jetty.project-608e74b9bf575cb7d17977629f6c925fec2367ca.tar.xz
org.eclipse.jetty.project-608e74b9bf575cb7d17977629f6c925fec2367ca.zip
add note to readonly annotation element
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/annotation/ManagedAttribute.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/ManagedAttribute.java b/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/ManagedAttribute.java
index c5cf94f6ea..5f79e40b8d 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/ManagedAttribute.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/ManagedAttribute.java
@@ -40,6 +40,8 @@ public @interface ManagedAttribute
/**
* Is the managed field read-only?
*
+ * Required only when a setter exists but should not be exposed via JMX
+ *
* @return true if readonly
*/
boolean readonly() default false;

Back to the top