| 1 8 9 package test.javax.management.remote.rmi; 10 11 import java.net.MalformedURLException ; 12 import java.util.HashMap ; 13 import java.util.Map ; 14 import javax.management.remote.JMXServiceURL ; 15 16 import test.javax.management.remote.JMXConnectorInvocationTestCase; 17 18 21 public class RMIIIOPConnectorInvocationTest extends JMXConnectorInvocationTestCase 22 { 23 public RMIIIOPConnectorInvocationTest(String s) 24 { 25 super(s); 26 } 27 28 public JMXServiceURL createJMXConnectorServerAddress() throws MalformedURLException  29 { 30 return new JMXServiceURL ("iiop", "localhost", 0); 31 } 32 33 public Map getEnvironment() 34 { 35 return new HashMap (); 36 } 37 } 38 | Popular Tags |