Details
-
Type:
Defect
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Completed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Patch:Accepted
Description
In the definition of jmx/readable?, copied below, .isReadable is called.
(defn readable?
"Is attribute readable?"
[n attr]
(.isReadable (mbean-info n)))
My guess is that the intended isReadable method is from the class MBeanAttributeInfo http://docs.oracle.com/javase/1.5.0/docs/api/javax/management/MBeanAttributeInfo.html#isReadable%28%29
However, mbean-info returns an instance of class MBeanInfo. Also note that the attr argument of readable? isn't even used.