some additional javadoc

This commit is contained in:
Jesse McConnell 2012-07-23 13:57:33 -05:00
parent cf9166164e
commit e987e954b0
1 changed files with 25 additions and 0 deletions

View File

@ -57,9 +57,34 @@ public @interface Managed
*/ */
boolean proxied() default false; 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"; 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 ""; 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 ""; String setter() default "";
} }