view j2se/test/javax/management/remote/mandatory/version/ImplVersionCommand.java @ 7:807dfe9c366c trunk

[svn] Load openjdk/jdk7/b19 into jdk/trunk.
author xiomara
date Fri, 31 Aug 2007 00:44:13 +0000
parents 5937f8212f93
children 37f131a4a8e7
line wrap: on
line source

/*
 * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 */

/*
 * @(#)file      ImplVersionCommand.java
 * @(#)author    Sun Microsystems, Inc.
 * @(#)version   1.4
 * @(#)date      07/08/30
 */

import javax.management.remote.rmi.RMIJRMPServerImpl;
import javax.management.remote.rmi.RMIServer;

public class ImplVersionCommand {

    public static void main(String[] args) throws Exception {

	// Create RMIJRMPServerImpl
	//
	System.out.println("Create RMIJRMPServerImpl");
	RMIServer server = new RMIJRMPServerImpl(0, null, null, null);
	
	// Get the JMX Remote impl version from RMIServer
	//
	System.out.println("Get JMX Remote implementation version from RMIServer");
	String full_version = server.getVersion();
	System.out.println("RMIServer.getVersion() = "+ full_version);
	String impl_version = full_version.substring(
	    full_version.indexOf("java_runtime_")+"java_runtime_".length());

	// Display JMX Remote impl version and Java Runtime version
	//
	System.out.println("JMX Remote implementation version   = " +
			   impl_version);
	System.out.println("Java Runtime implementation version = " +
			   args[0]);

	// Check JMX Remote impl version vs. Java Runtime  version
	//
	if (!impl_version.equals(args[0])) {
	    // Test FAILED
	    throw new IllegalArgumentException(
		"***FAILED: JMX Remote and Java Runtime versions do NOT match***");
	}
	// Test OK!
	System.out.println("JMX Remote and Java Runtime versions match.");
	System.out.println("Bye! Bye!");
    }
}