All MBeans that have Properties must extend this interface.
Properties are always Strings. Property names are required to be unique.
To specify properties when creating any type of {@link AMXConfig} which
(the AMXConfig must extend PropertiesAccess), add them to the optional
Map when creating it:
final Map optional = new HashMap();
optional.put( PropertiesAccess.PROPERTY_PREFIX + "prop1", prop1Value );
optional.put( PropertiesAccess.PROPERTY_PREFIX + "prop2", prop2Value );
...
|