Samples JDK
package-info.java
1 /**
2  * \brief
3  *
4  * <h1>Server</h1>
5  * <ul>
6  * <li>The MBean server is a registry for MBeans.</li>
7  * <li>There could be multiple MBean servers.</li>
8  * <li>
9  * A connector server can be attached to an MBean server in one of two ways. Either the MBean server to which it is attached is specified when the
10  * connector server is constructed, or the connector server is registered as an MBean in the MBean server to which it is attached.
11  * </li>
12  * <li>JMXConnectorServer is the interface.</li>
13  * <li>RMIConnectorServer is used normally.</li>
14  *
15  * <li>JMXConnectorServer's address is specified by JMXServiceURL [service:jmx:rmi:///jndi/rmi://localhost:1999/EIPRMIConnector]</li>
16  * </ul>
17  * <h1>client</h1>
18  * <ul>
19  * <li>Uses JMXServiceURL [service:jmx:rmi:///jndi/rmi://localhost:1999/EIPRMIConnector] and gets JMXConnector object.</li>
20  * <li>Using JMXConnector, MBeanServerConnection object is fetched.</li>
21  * </ul>
22  *
23  *
24  */
25 package com.freemindcafe.jmx;