@Documented
@Retention(value=RUNTIME)
public @interface JMXBeanKey
JMXBean
class. This annotated getter method should return a unique bean key as a String
. The bean key pattern must conform to the name used in the constructor of ObjectName
. @JMXBean public class MyBean { private int level = 0; @JMXBeanKey public String getBeanKey() { return "datasource.trading.tradechannel:name=TradeChannel,level=" + level; } }
Please send bug reports and comments to Caplin support