< prev index next >

test/java/lang/management/ManagementFactory/ValidateOpenTypes.java

Print this page


   1 /*
   2  * Copyright (c) 2004, 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     5024531
  27  * @summary Validate open types mapped for the MXBeans in the platform
  28  *          MBeanServer.
  29  * @author  Mandy Chung
  30  *
  31  * @modules java.management
  32  *          jdk.management
  33  * @compile ValidateOpenTypes.java
  34  * @run main/othervm -verbose:gc ValidateOpenTypes
  35  */
  36 import java.lang.management.*;
  37 import javax.management.*;
  38 import javax.management.openmbean.CompositeData;
  39 import javax.management.openmbean.TabularData;
  40 import static java.lang.management.ManagementFactory.*;
  41 import java.util.List;
  42 import java.util.Map;
  43 import com.sun.management.GcInfo;
  44 
  45 public class ValidateOpenTypes {
  46     private static MBeanServer server =
  47         ManagementFactory.getPlatformMBeanServer();
  48     private static ObjectName memory;
  49     private static ObjectName thread;
  50     private static ObjectName runtime;
  51     private static ObjectName os;
  52     private static ObjectName heapPool = null;


   1 /*
   2  * Copyright (c) 2004, 2016, 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     5024531
  27  * @summary Validate open types mapped for the MXBeans in the platform
  28  *          MBeanServer.
  29  * @author  Mandy Chung
  30  *
  31  * @modules jdk.management

  32  * @compile ValidateOpenTypes.java
  33  * @run main/othervm -verbose:gc ValidateOpenTypes
  34  */
  35 import java.lang.management.*;
  36 import javax.management.*;
  37 import javax.management.openmbean.CompositeData;
  38 import javax.management.openmbean.TabularData;
  39 import static java.lang.management.ManagementFactory.*;
  40 import java.util.List;
  41 import java.util.Map;
  42 import com.sun.management.GcInfo;
  43 
  44 public class ValidateOpenTypes {
  45     private static MBeanServer server =
  46         ManagementFactory.getPlatformMBeanServer();
  47     private static ObjectName memory;
  48     private static ObjectName thread;
  49     private static ObjectName runtime;
  50     private static ObjectName os;
  51     private static ObjectName heapPool = null;


< prev index next >