Annotation Type ManagedAttribute
-
@Retention(RUNTIME) @Documented @Target(METHOD) public @interface ManagedAttributeThe@ManagedAttributeannotation is used to indicate that a given method exposes a JMX attribute. This annotation is placed always on the reader method of a given attribute. Unless it is marked as read-only in the configuration of the annotation a corresponding setter is looked for following normal naming conventions. For example if this annotation is on a method called getFoo() then a method called setFoo() would be looked for and if found wired automatically into the jmx attribute.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.Stringnamename to use for the attributebooleanproxiedDoes the managed field exist on a proxy object?booleanreadonlyIs the managed field read-only? Required only when a setter exists but should not be exposed via JMXjava.lang.StringsetterIf is a field references a setter that doesn't conform to standards for discovery it can be set here.java.lang.StringvalueDescription of the Managed Attribute
-