Searched refs:serviceURL (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/iiop/
H A DClientProvider.java39 public JMXConnector newJMXConnector(JMXServiceURL serviceURL, argument
42 if (!serviceURL.getProtocol().equals("iiop")) {
44 serviceURL.getProtocol());
46 return new RMIConnector(serviceURL, environment);
H A DServerProvider.java40 public JMXConnectorServer newJMXConnectorServer(JMXServiceURL serviceURL, argument
44 if (!serviceURL.getProtocol().equals("iiop")) {
46 serviceURL.getProtocol());
48 return new RMIConnectorServer(serviceURL, environment, mbeanServer);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/rmi/
H A DClientProvider.java39 public JMXConnector newJMXConnector(JMXServiceURL serviceURL, argument
42 if (!serviceURL.getProtocol().equals("rmi")) {
44 serviceURL.getProtocol());
46 return new RMIConnector(serviceURL, environment);
H A DServerProvider.java40 public JMXConnectorServer newJMXConnectorServer(JMXServiceURL serviceURL, argument
44 if (!serviceURL.getProtocol().equals("rmi")) {
46 serviceURL.getProtocol());
48 return new RMIConnectorServer(serviceURL, environment, mbeanServer);
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectorProvider.java48 * @param serviceURL the address of the connector server to connect to.
59 * @exception NullPointerException if <code>serviceURL</code> or
64 * protocol in the {@code serviceURL} is not recognized by this
66 * for the protocol in {@code serviceURL} but it cannot be used
70 public JMXConnector newJMXConnector(JMXServiceURL serviceURL, argument
H A DJMXConnectorServerProvider.java48 * @param serviceURL the address of the new connector server. The
67 * @exception NullPointerException if <code>serviceURL</code> or
72 * protocol in the {@code serviceURL} is not recognized by this
74 * for the protocol in {@code serviceURL} but it cannot be used
78 public JMXConnectorServer newJMXConnectorServer(JMXServiceURL serviceURL, argument
H A DJMXServiceURL.java126 * @param serviceURL the URL string to be parsed.
128 * @exception NullPointerException if <code>serviceURL</code> is
131 * @exception MalformedURLException if <code>serviceURL</code>
138 public JMXServiceURL(String serviceURL) throws MalformedURLException { argument
139 final int serviceURLLength = serviceURL.length();
144 char c = serviceURL.charAt(i);
155 if (!serviceURL.regionMatches(true, // ignore case
156 0, // serviceURL offset
166 final int protoEnd = indexOf(serviceURL, ':', protoStart);
168 serviceURL
[all...]
H A DJMXConnectorServerFactory.java252 * @param serviceURL the address of the new connector server. The
272 * @exception NullPointerException if <code>serviceURL</code> is null.
278 * protocol in <code>serviceURL</code>.
281 * protocol in <code>serviceURL</code> but it cannot be used for
285 newJMXConnectorServer(JMXServiceURL serviceURL, argument
301 final String protocol = serviceURL.getProtocol();
305 JMXConnectorFactory.getProvider(serviceURL,
321 serviceURL,
353 return provider.newJMXConnectorServer(serviceURL,
H A DJMXConnectorFactory.java209 * #connect(JMXServiceURL,Map) connect(serviceURL, null)}.</p>
211 * @param serviceURL the address of the connector server to
217 * @exception NullPointerException if <code>serviceURL</code> is null.
225 public static JMXConnector connect(JMXServiceURL serviceURL) argument
227 return connect(serviceURL, null);
237 * JMXConnector conn = JMXConnectorFactory.newJMXConnector(serviceURL,
242 * @param serviceURL the address of the connector server to connect to.
254 * @exception NullPointerException if <code>serviceURL</code> is null.
262 public static JMXConnector connect(JMXServiceURL serviceURL, argument
265 if (serviceURL
309 newJMXConnector(JMXServiceURL serviceURL, Map<String,?> environment) argument
413 getProvider(JMXServiceURL serviceURL, final Map<String, Object> environment, String providerClassName, Class<T> targetInterface, final ClassLoader loader) argument
[all...]

Completed in 101 milliseconds