< prev index next >

test/javax/management/MBeanServer/MBeanServerNotificationTest.java

Print this page
rev 11832 : 8078896: Add @modules as needed to the jdk_svc tests
Reviewed-by: alanb, mchung
   1 /*
   2  * Copyright (c) 2008, 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 6689505
  27  * @summary Checks that MBeanServerNotification.toString contains the
  28  *          MBean name.
  29  * @author Daniel Fuchs

  30  * @compile MBeanServerNotificationTest.java
  31  * @run main MBeanServerNotificationTest
  32  */
  33 
  34 import com.sun.jmx.mbeanserver.Util;
  35 import javax.management.*;
  36 import java.util.concurrent.*;
  37 
  38 public class MBeanServerNotificationTest {
  39     final static String[] names = {
  40         ":type=Wombat", "wombat:type=Wombat",null,
  41     };
  42     public static void main(String[] args) throws Exception {
  43         System.out.println("Test that MBeanServerNotification.toString " +
  44                 "contains the name of the MBean being registered " +
  45                 "or unregistered.");
  46         int failures = 0;
  47         final MBeanServer mbs = MBeanServerFactory.createMBeanServer();
  48         for (String str:names) {
  49             try {


   1 /*
   2  * Copyright (c) 2008, 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 6689505
  27  * @summary Checks that MBeanServerNotification.toString contains the
  28  *          MBean name.
  29  * @author Daniel Fuchs
  30  * @modules java.management/com.sun.jmx.mbeanserver
  31  * @compile MBeanServerNotificationTest.java
  32  * @run main MBeanServerNotificationTest
  33  */
  34 
  35 import com.sun.jmx.mbeanserver.Util;
  36 import javax.management.*;
  37 import java.util.concurrent.*;
  38 
  39 public class MBeanServerNotificationTest {
  40     final static String[] names = {
  41         ":type=Wombat", "wombat:type=Wombat",null,
  42     };
  43     public static void main(String[] args) throws Exception {
  44         System.out.println("Test that MBeanServerNotification.toString " +
  45                 "contains the name of the MBean being registered " +
  46                 "or unregistered.");
  47         int failures = 0;
  48         final MBeanServer mbs = MBeanServerFactory.createMBeanServer();
  49         for (String str:names) {
  50             try {


< prev index next >