Package org.eclipse.jetty.jmx
Class ConnectorServer
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.jmx.ConnectorServer
-
- All Implemented Interfaces:
LifeCycle
@Deprecated(since="2021-05-27") public class ConnectorServer extends AbstractLifeCycle
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.LifeCycle wrapper for JMXConnectorServer.
This class provides the following facilities:
- participates in the
Server
lifecycle - starts the RMI registry if not there already
- allows to bind the RMI registry and the RMI server to the loopback interface
- makes it easy to use TLS for the JMX communication
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
RMI_REGISTRY_CLIENT_SOCKET_FACTORY_ATTRIBUTE
Deprecated.
-
Constructor Summary
Constructors Constructor Description ConnectorServer(javax.management.remote.JMXServiceURL serviceURL, java.lang.String name)
Deprecated.Constructs a ConnectorServerConnectorServer(javax.management.remote.JMXServiceURL svcUrl, java.util.Map<java.lang.String,?> environment, java.lang.String name)
Deprecated.Constructs a ConnectorServerConnectorServer(javax.management.remote.JMXServiceURL svcUrl, java.util.Map<java.lang.String,?> environment, java.lang.String name, SslContextFactory sslContextFactory)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
doStart()
Deprecated.void
doStop()
Deprecated.javax.management.remote.JMXServiceURL
getAddress()
Deprecated.-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stop, toString
-
-
-
-
Field Detail
-
RMI_REGISTRY_CLIENT_SOCKET_FACTORY_ATTRIBUTE
public static final java.lang.String RMI_REGISTRY_CLIENT_SOCKET_FACTORY_ATTRIBUTE
Deprecated.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ConnectorServer
public ConnectorServer(javax.management.remote.JMXServiceURL serviceURL, java.lang.String name)
Deprecated.Constructs a ConnectorServer- Parameters:
serviceURL
- the address of the new ConnectorServername
- object name string to be assigned to ConnectorServer bean
-
ConnectorServer
public ConnectorServer(javax.management.remote.JMXServiceURL svcUrl, java.util.Map<java.lang.String,?> environment, java.lang.String name)
Deprecated.Constructs a ConnectorServer- Parameters:
svcUrl
- the address of the new ConnectorServerenvironment
- a set of attributes to control the new ConnectorServer's behavior. This parameter can be null. Keys in this map must be Strings. The appropriate type of each associated value depends on the attribute. The contents of environment are not changed by this call.name
- object name string to be assigned to ConnectorServer bean
-
ConnectorServer
public ConnectorServer(javax.management.remote.JMXServiceURL svcUrl, java.util.Map<java.lang.String,?> environment, java.lang.String name, SslContextFactory sslContextFactory)
Deprecated.
-
-