From e987e954b0f1d44da7728bca775512bef013f26e Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Mon, 23 Jul 2012 13:57:33 -0500 Subject: [PATCH] some additional javadoc --- .../jetty/util/annotation/Managed.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/Managed.java b/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/Managed.java index 11adeec349a..32ef8bb992a 100644 --- a/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/Managed.java +++ b/jetty-util/src/main/java/org/eclipse/jetty/util/annotation/Managed.java @@ -57,9 +57,34 @@ public @interface Managed */ boolean proxied() default false; + /** + * The impact of an operation. + * + * NOTE: Valid values are UNKNOWN, ACTION, INFO, ACTION_INFO + * + * NOTE: applies to METHOD + * + * @return String representing the impact of the operation + */ String impact() default "UNKNOWN"; + /** + * If is a field references a getter that doesn't conform to standards for discovery + * it can be set here. + * + * NOTE: applies to FIELD + * + * @return the full name of the getter in question + */ String getter() default ""; + /** + * If is a field references a setter that doesn't conform to standards for discovery + * it can be set here. + * + * NOTE: applies to FIELD + * + * @return the full name of the setter in question + */ String setter() default ""; }