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


Deprecated. replaced by JMXProperty

@Target(value=FIELD)
public @interface Property

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
          Deprecated. Sets the property name.
 
Optional Element Summary
 boolean notification
          Deprecated. Enables notification on the current property.
 String rights
          Deprecated. Sets the access permission.
 

Element Detail

name

public abstract String name
Deprecated. 
Sets the property name.

rights

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

Default:
"r"

notification

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

Default:
false


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