test/java/lang/management/ManagementFactory/PlatformMBeanServerTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     4947536
  27  * @summary Basic unit test of ManagementFactory.getPlatformMBeanServer()
  28  * @author  Mandy Chung
  29  *
  30  * @compile -source 1.5 PlatformMBeanServerTest.java
  31  * @run main PlatformMBeanServerTest
  32  */
  33 
  34 import java.lang.management.*;
  35 import static java.lang.management.ManagementFactory.*;
  36 import java.util.*;
  37 import java.util.logging.LogManager;
  38 
  39 import javax.management.MBeanServer;
  40 import javax.management.ObjectName;
  41 
  42 public class PlatformMBeanServerTest {
  43     public static void main(String[] argv) throws Exception {
  44         MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
  45         printMBeans(mbs);
  46 
  47         // validate if all standard JVM MBeans are registered
  48         checkStandardMBeans(mbs);
  49 
  50         // validate if all platform MBeans are registered
  51         checkPlatformMBeans(mbs);




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     4947536
  27  * @summary Basic unit test of ManagementFactory.getPlatformMBeanServer()
  28  * @author  Mandy Chung



  29  */
  30 
  31 import java.lang.management.*;
  32 import static java.lang.management.ManagementFactory.*;
  33 import java.util.*;
  34 import java.util.logging.LogManager;
  35 
  36 import javax.management.MBeanServer;
  37 import javax.management.ObjectName;
  38 
  39 public class PlatformMBeanServerTest {
  40     public static void main(String[] argv) throws Exception {
  41         MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
  42         printMBeans(mbs);
  43 
  44         // validate if all standard JVM MBeans are registered
  45         checkStandardMBeans(mbs);
  46 
  47         // validate if all platform MBeans are registered
  48         checkPlatformMBeans(mbs);