Example usage for Java javax.management.remote JMXConnectorFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
String | PROTOCOL_PROVIDER_PACKAGES Name of the attribute that specifies the provider packages that are consulted when looking for the handler for a protocol. |
JMXConnector | connect(JMXServiceURL serviceURL) Creates a connection to the connector server at the given address. This method is equivalent to #connect(JMXServiceURL,Map) connect(serviceURL, null) . |
JMXConnector | connect(JMXServiceURL serviceURL, Map Creates a connection to the connector server at the given address. This method is equivalent to: JMXConnector conn = JMXConnectorFactory.newJMXConnector(serviceURL, environment); conn.connect(environment); |
JMXConnector | newJMXConnector(JMXServiceURL serviceURL, Map Creates a connector client for the connector server at the given address. |