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

Print this page




  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     5024531
  27  * @summary Validata open types mapped for the MXBeans in the platform
  28  *          MBeanServer.
  29  * @author  Mandy Chung
  30  *
  31  * @compile -source 1.5 ValidateOpenTypes.java
  32  * @run main/othervm -verbose:gc ValidateOpenTypes
  33  */
  34 import java.lang.management.*;
  35 import javax.management.*;
  36 import javax.management.openmbean.CompositeData;
  37 import javax.management.openmbean.TabularData;
  38 import static java.lang.management.ManagementFactory.*;
  39 import java.util.List;
  40 import java.util.Map;
  41 import java.util.Properties;
  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;




  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     5024531
  27  * @summary Validata open types mapped for the MXBeans in the platform
  28  *          MBeanServer.
  29  * @author  Mandy Chung
  30  *
  31  * @compile ValidateOpenTypes.java
  32  * @run main/othervm -verbose:gc ValidateOpenTypes
  33  */
  34 import java.lang.management.*;
  35 import javax.management.*;
  36 import javax.management.openmbean.CompositeData;
  37 import javax.management.openmbean.TabularData;
  38 import static java.lang.management.ManagementFactory.*;
  39 import java.util.List;
  40 import java.util.Map;
  41 import java.util.Properties;
  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;