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