< prev index next >

test/javax/management/remote/mandatory/connectorServer/RMIExporterTest.java

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


   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 5016705
  27  * @summary Tests the use of the RMIExporter class.
  28  * @author Luis-Miguel Alventosa

  29  * @modules java.management.rmi/com.sun.jmx.remote.internal.rmi

  30  * @run clean RMIExporterTest
  31  * @run build RMIExporterTest
  32  * @run main RMIExporterTest
  33  */
  34 
  35 import java.rmi.NoSuchObjectException;
  36 import java.rmi.Remote;
  37 import java.rmi.RemoteException;
  38 import java.rmi.server.RMIClientSocketFactory;
  39 import java.rmi.server.RMIServerSocketFactory;
  40 import java.rmi.server.UnicastRemoteObject;
  41 import java.util.HashMap;
  42 import javax.management.MBeanServer;
  43 import javax.management.MBeanServerFactory;
  44 import javax.management.remote.JMXConnector;
  45 import javax.management.remote.JMXConnectorFactory;
  46 import javax.management.remote.JMXConnectorServer;
  47 import javax.management.remote.JMXConnectorServerFactory;
  48 import javax.management.remote.JMXServiceURL;
  49 import com.sun.jmx.remote.internal.rmi.RMIExporter;




   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 5016705
  27  * @summary Tests the use of the RMIExporter class.
  28  * @author Luis-Miguel Alventosa
  29  *
  30  * @modules java.management.rmi/com.sun.jmx.remote.internal.rmi
  31  *
  32  * @run clean RMIExporterTest
  33  * @run build RMIExporterTest
  34  * @run main RMIExporterTest
  35  */
  36 
  37 import java.rmi.NoSuchObjectException;
  38 import java.rmi.Remote;
  39 import java.rmi.RemoteException;
  40 import java.rmi.server.RMIClientSocketFactory;
  41 import java.rmi.server.RMIServerSocketFactory;
  42 import java.rmi.server.UnicastRemoteObject;
  43 import java.util.HashMap;
  44 import javax.management.MBeanServer;
  45 import javax.management.MBeanServerFactory;
  46 import javax.management.remote.JMXConnector;
  47 import javax.management.remote.JMXConnectorFactory;
  48 import javax.management.remote.JMXConnectorServer;
  49 import javax.management.remote.JMXConnectorServerFactory;
  50 import javax.management.remote.JMXServiceURL;
  51 import com.sun.jmx.remote.internal.rmi.RMIExporter;


< prev index next >