blob: 9e372c9cf8b03e59523c2f2e85641d753b809884 [file] [log] [blame]
Manuel L. Santillan0b668002006-09-09 16:06:26 +00001JMX introspector is a small library bundle that
Manuel L. Santillan04aea392006-09-27 23:04:14 +00002uses the CGLIB library, the reflection API and
Manuel L. Santillan0b668002006-09-09 16:06:26 +00003the metadata provided by JMX on the managed objects
4to dynamically proxy remote MBeans, without having
5the classes in your classpath.
6It can be used to create management consoles that do not
7need to have the remote mbeans classes in its classpath to
8use dynamic proxies.
9
10It is used by the org.apache.felix.mishell project to create management clients
11for felix jmood, but it can be used to manage any JMX agent.
12
Manuel L. Santillan04aea392006-09-27 23:04:14 +000013It currently uses CGLIB 2.1_3 for the generation
14of the interface classes. CGLIB is released under the ASL and can be downloaded
15from:
16http://cglib.sourceforge.net/
Manuel L. Santillan0b668002006-09-09 16:06:26 +000017
18