< prev index next >

test/java/lang/management/ManagementFactory/ProxyTypeMapping.java

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


  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 Test type mapping of the platform MXBean proxy
  28  *          returned from Management.newPlatformMXBeanProxy().
  29  * @author  Mandy Chung
  30  *
  31  * @modules jdk.management
  32  * @compile ProxyTypeMapping.java
  33  * @run main/othervm -verbose:gc ProxyTypeMapping
  34  */
  35 import java.lang.management.*;
  36 import javax.management.*;
  37 import static java.lang.management.ManagementFactory.*;
  38 import java.util.List;
  39 import java.util.Map;
  40 import com.sun.management.GcInfo;
  41 
  42 public class ProxyTypeMapping {
  43     private static MBeanServer server =
  44         ManagementFactory.getPlatformMBeanServer();
  45     private static RuntimeMXBean runtime;
  46     private static ThreadMXBean thread;
  47     private static MemoryMXBean memory;
  48     private static MemoryPoolMXBean heapPool = null;
  49     private static MemoryPoolMXBean nonHeapPool = null;
  50     public static void main(String[] argv) throws Exception {
  51         runtime = newPlatformMXBeanProxy(server,




  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 Test type mapping of the platform MXBean proxy
  28  *          returned from Management.newPlatformMXBeanProxy().
  29  * @author  Mandy Chung
  30  *

  31  * @compile ProxyTypeMapping.java
  32  * @run main/othervm -verbose:gc ProxyTypeMapping
  33  */
  34 import java.lang.management.*;
  35 import javax.management.*;
  36 import static java.lang.management.ManagementFactory.*;
  37 import java.util.List;
  38 import java.util.Map;
  39 import com.sun.management.GcInfo;
  40 
  41 public class ProxyTypeMapping {
  42     private static MBeanServer server =
  43         ManagementFactory.getPlatformMBeanServer();
  44     private static RuntimeMXBean runtime;
  45     private static ThreadMXBean thread;
  46     private static MemoryMXBean memory;
  47     private static MemoryPoolMXBean heapPool = null;
  48     private static MemoryPoolMXBean nonHeapPool = null;
  49     public static void main(String[] argv) throws Exception {
  50         runtime = newPlatformMXBeanProxy(server,


< prev index next >