-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
b32
-
generic
-
generic
A Standard MBean with this interface:
public interface ThingMBean {
int isSurprising();
}
should define an operation called "isSurprising" with zero args. But the introspection logic to detect getters called "boolean isX()" interferes with this, and ends up defining neither an attribute nor an operation in the MBeanInfo for the MBean.
public interface ThingMBean {
int isSurprising();
}
should define an operation called "isSurprising" with zero args. But the introspection logic to detect getters called "boolean isX()" interferes with this, and ends up defining neither an attribute nor an operation in the MBeanInfo for the MBean.