< prev index next >

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

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


  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 jdk.management

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




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


< prev index next >