org.apache.felix.ipojo.handlers.jmx
Annotation Type JMXProperty


@Target(value=FIELD)
public @interface JMXProperty

JMX Property annotation. Allows exposing properties in the MBean. This annotation must be used only if the Config annotation is used. Be aware that despite is it provided in the annotations jar, it refers to an external handler.

Author:
Felix Project Team

Required Element Summary
 String name
          Sets the property name.
 
Optional Element Summary
 boolean notification
          Enables notification on the current property.
 String rights
          Sets the access permission.
 

Element Detail

name

public abstract String name
Sets the property name.

rights

public abstract String rights
Sets the access permission. Possible values are 'r' (default) or 'w'. 'w' implies read and write access.

Default:
"r"

notification

public abstract boolean notification
Enables notification on the current property. Notifications are disable by default.

Default:
false


Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.