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

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

Introduction

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

The text is from its open source code.

Constructor

RMIConnector(JMXServiceURL url, Map environment)

Constructs an RMIConnector that will connect the RMI connector server with the given address.

The address can refer directly to the connector server, using the following syntax:

 service:jmx:rmi://[host[:port]]/stub/encoded-stub 

(Here, the square brackets [] are not part of the address but indicate that the host and port are optional.)

The address can instead indicate where to find an RMI stub through JNDI, using the following syntax:

 service:jmx:rmi://[host[:port]]/jndi/jndi-name 

An implementation may also recognize additional address syntaxes, for example:

 service:jmx:iiop://[host[:port]]/stub/encoded-stub 
RMIConnector(RMIServer rmiServer, Map environment)

Constructs an RMIConnector using the given RMI stub.