< prev index next >

test/java/lang/management/ManagementFactory/ProxyExceptions.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     5024531
  27  * @summary Test type mapping of the platform MXBean proxy
  28  *          returned from Management.newPlatformMXBeanProxy().
  29  * @author  Mandy Chung
  30  * @modules jdk.management
  31  */
  32 import java.lang.management.*;
  33 import javax.management.*;
  34 import static java.lang.management.ManagementFactory.*;
  35 import java.util.List;
  36 import java.util.Map;
  37 import java.util.Properties;
  38 import com.sun.management.GcInfo;
  39 
  40 public class ProxyExceptions {
  41     private static MBeanServer server =
  42         ManagementFactory.getPlatformMBeanServer();
  43     private static MemoryPoolMXBean heapPool = null;
  44     private static MemoryPoolMXBean nonHeapPool = null;
  45     public static void main(String[] argv) throws Exception {
  46         List<MemoryPoolMXBean> pools = getMemoryPoolMXBeans();
  47         for (MemoryPoolMXBean p : pools) {
  48             MemoryPoolMXBean proxy = newPlatformMXBeanProxy(server,
  49                 MEMORY_POOL_MXBEAN_DOMAIN_TYPE + ",name=" + p.getName(),
  50                 MemoryPoolMXBean.class);




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

  30  */
  31 import java.lang.management.*;
  32 import javax.management.*;
  33 import static java.lang.management.ManagementFactory.*;
  34 import java.util.List;
  35 import java.util.Map;
  36 import java.util.Properties;
  37 import com.sun.management.GcInfo;
  38 
  39 public class ProxyExceptions {
  40     private static MBeanServer server =
  41         ManagementFactory.getPlatformMBeanServer();
  42     private static MemoryPoolMXBean heapPool = null;
  43     private static MemoryPoolMXBean nonHeapPool = null;
  44     public static void main(String[] argv) throws Exception {
  45         List<MemoryPoolMXBean> pools = getMemoryPoolMXBeans();
  46         for (MemoryPoolMXBean p : pools) {
  47             MemoryPoolMXBean proxy = newPlatformMXBeanProxy(server,
  48                 MEMORY_POOL_MXBEAN_DOMAIN_TYPE + ",name=" + p.getName(),
  49                 MemoryPoolMXBean.class);


< prev index next >