Java javax.management.remote JMXConnectorFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.management.remote JMXConnectorFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.management.remote JMXConnectorFactory.

The text is from its open source code.

Field

StringPROTOCOL_PROVIDER_PACKAGES

Name of the attribute that specifies the provider packages that are consulted when looking for the handler for a protocol.

Method

JMXConnectorconnect(JMXServiceURL serviceURL)

Creates a connection to the connector server at the given address.

This method is equivalent to #connect(JMXServiceURL,Map) connect(serviceURL, null) .

JMXConnectorconnect(JMXServiceURL serviceURL, Map environment)

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); 
JMXConnectornewJMXConnector(JMXServiceURL serviceURL, Map environment)

Creates a connector client for the connector server at the given address.