< prev index next >

test/java/lang/management/MXBean/MXBeanBehavior.java

Print this page
rev 11832 : 8078896: Add @modules as needed to the jdk_svc tests
Reviewed-by: alanb, mchung
   1 /*
   2  * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     6320211
  27  * @summary Check that java.lang.management MXBeans have the same behavior
  28  *          as user MXBeans
  29  * @author  Eamonn McManus


  30  * @run     main/othervm MXBeanBehavior
  31  */
  32 
  33 import java.lang.management.*;
  34 import java.lang.reflect.*;
  35 import java.util.*;
  36 import javax.management.*;
  37 
  38 public class MXBeanBehavior {
  39     // Exclude list: list of platform MBeans that are not MXBeans
  40     public static final HashSet<String> excludeList = new HashSet<>(
  41             Arrays.asList("com.sun.management:type=DiagnosticCommand"));
  42 
  43     public static void main(String[] args) throws Exception {
  44         MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
  45 
  46         /* Test that all the MBeans in the java.* and com.sun.management*
  47            domains are MXBeans with the appropriate behavior.  */
  48         Set<ObjectName> names = mbs.queryNames(new ObjectName("java.*:*"),
  49                                                null);


   1 /*
   2  * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     6320211
  27  * @summary Check that java.lang.management MXBeans have the same behavior
  28  *          as user MXBeans
  29  * @author  Eamonn McManus
  30  * @modules java.management
  31  *          jdk.management
  32  * @run     main/othervm MXBeanBehavior
  33  */
  34 
  35 import java.lang.management.*;
  36 import java.lang.reflect.*;
  37 import java.util.*;
  38 import javax.management.*;
  39 
  40 public class MXBeanBehavior {
  41     // Exclude list: list of platform MBeans that are not MXBeans
  42     public static final HashSet<String> excludeList = new HashSet<>(
  43             Arrays.asList("com.sun.management:type=DiagnosticCommand"));
  44 
  45     public static void main(String[] args) throws Exception {
  46         MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
  47 
  48         /* Test that all the MBeans in the java.* and com.sun.management*
  49            domains are MXBeans with the appropriate behavior.  */
  50         Set<ObjectName> names = mbs.queryNames(new ObjectName("java.*:*"),
  51                                                null);


< prev index next >