(defn build-attribute-info
"Construct an MBeanAttributeInfo. Normally called with a key/value pair from a Clojure map."
([attr-name attr-value]
(build-attribute-info
(as-str attr-name)
(guess-attribute-typename attr-value)
(as-str attr-name) true false false))
([name type desc readable? writable? is?] (MBeanAttributeInfo. name type desc readable? writable? is? )))
Comments top
No comments for build-attribute-info. Log in to add a comment.