- java.lang.Object
-
- javax.management.NotificationBroadcasterSupport
-
- javax.management.remote.JMXConnectorServer
-
- All Implemented Interfaces:
- MBeanRegistration, NotificationBroadcaster, NotificationEmitter, JMXAddressable, JMXConnectorServerMBean
- Direct Known Subclasses:
- RMIConnectorServer
public abstract class JMXConnectorServer extends NotificationBroadcasterSupport implements JMXConnectorServerMBean, MBeanRegistration, JMXAddressable
Superclass of every connector server. A connector server is attached to an MBean server. It listens for client connection requests and creates a connection for each one.
A connector server is associated with an MBean server either by registering it in that MBean server, or by passing the MBean server to its constructor.
A connector server is inactive when created. It only starts listening for client connections when the
start
method is called. A connector server stops listening for client connections when thestop
method is called or when the connector server is unregistered from its MBean server.Stopping a connector server does not unregister it from its MBean server. A connector server once stopped cannot be restarted.
Each time a client connection is made or broken, a notification of class
JMXConnectionNotification
is emitted.- Since:
- 1.5
-
-
Field Summary
Fields Modifier and Type Field and Description static String
AUTHENTICATOR
Name of the attribute that specifies the authenticator for a connector server.
-
Constructor Summary
Constructors Constructor and Description JMXConnectorServer()
Constructs a connector server that will be registered as an MBean in the MBean server it is attached to.JMXConnectorServer(MBeanServer mbeanServer)
Constructs a connector server that is attached to the given MBean server.
-
Method Summary
Methods Modifier and Type Method and Description protected void
connectionClosed(String connectionId, String message, Object userData)
Called by a subclass when a client connection is closed normally.protected void
connectionFailed(String connectionId, String message, Object userData)
Called by a subclass when a client connection fails.protected void
connectionOpened(String connectionId, String message, Object userData)
Called by a subclass when a new client connection is opened.String[]
getConnectionIds()
The list of IDs for currently-open connections to this connector server.MBeanServer
getMBeanServer()
Returns the MBean server that this connector server is attached to.MBeanNotificationInfo[]
getNotificationInfo()
Returns an array indicating the notifications that this MBean sends.void
postDeregister()
Allows the MBean to perform any operations needed after having been unregistered in the MBean server.void
postRegister(Boolean registrationDone)
Allows the MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed.void
preDeregister()
Called by an MBean server when this connector server is unregistered from that MBean server.ObjectName
preRegister(MBeanServer mbs, ObjectName name)
Called by an MBean server when this connector server is registered in that MBean server.void
setMBeanServerForwarder(MBeanServerForwarder mbsf)
Inserts an object that intercepts requests for the MBean server that arrive through this connector server.JMXConnector
toJMXConnector(Map<String,?> env)
Returns a client stub for this connector server.-
Methods inherited from class javax.management.NotificationBroadcasterSupport
addNotificationListener, handleNotification, removeNotificationListener, removeNotificationListener, sendNotification
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.management.remote.JMXConnectorServerMBean
getAddress, getAttributes, isActive, start, stop
-
Methods inherited from interface javax.management.remote.JMXAddressable
getAddress
-
-
-
-
Field Detail
-
AUTHENTICATOR
public static final String AUTHENTICATOR
Name of the attribute that specifies the authenticator for a connector server. The value associated with this attribute, if any, must be an object that implements the interface
JMXAuthenticator
.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JMXConnectorServer
public JMXConnectorServer()
Constructs a connector server that will be registered as an MBean in the MBean server it is attached to. This constructor is typically called by one of the
createMBean
methods when creating, within an MBean server, a connector server that makes it available remotely.
-
JMXConnectorServer
public JMXConnectorServer(MBeanServer mbeanServer)
Constructs a connector server that is attached to the given MBean server. A connector server that is created in this way can be registered in a different MBean server, or not registered in any MBean server.
- Parameters:
mbeanServer
- the MBean server that this connector server is attached to. Null if this connector server will be attached to an MBean server by being registered in it.
-
-
Method Detail
-
getMBeanServer
public MBeanServer getMBeanServer()
Returns the MBean server that this connector server is attached to.
- Returns:
- the MBean server that this connector server is attached to, or null if it is not yet attached to an MBean server.
-
setMBeanServerForwarder
public void setMBeanServerForwarder(MBeanServerForwarder mbsf)
Description copied from interface:JMXConnectorServerMBean
Inserts an object that intercepts requests for the MBean server that arrive through this connector server. This object will be supplied as the
MBeanServer
for any new connection created by this connector server. Existing connections are unaffected.This method can be called more than once with different
MBeanServerForwarder
objects. The result is a chain of forwarders. The last forwarder added is the first in the chain. In more detail:If this connector server is already associated with an
MBeanServer
object, then that object is given tombsf.setMBeanServer
. If doing so produces an exception, this method throws the same exception without any other effect.If this connector is not already associated with an
MBeanServer
object, or if thembsf.setMBeanServer
call just mentioned succeeds, thenmbsf
becomes this connector server'sMBeanServer
.
- Specified by:
setMBeanServerForwarder
in interfaceJMXConnectorServerMBean
- Parameters:
mbsf
- the newMBeanServerForwarder
.
-
getConnectionIds
public String[] getConnectionIds()
Description copied from interface:JMXConnectorServerMBean
The list of IDs for currently-open connections to this connector server.
- Specified by:
getConnectionIds
in interfaceJMXConnectorServerMBean
- Returns:
- a new string array containing the list of IDs. If there are no currently-open connections, this array will be empty.
-
toJMXConnector
public JMXConnector toJMXConnector(Map<String,?> env) throws IOException
Returns a client stub for this connector server. A client stub is a serializable object whose
connect
method can be used to make one new connection to this connector server.A given connector need not support the generation of client stubs. However, the connectors specified by the JMX Remote API do (JMXMP Connector and RMI Connector).
The default implementation of this method uses
JMXConnectorServerMBean.getAddress()
andJMXConnectorFactory
to generate the stub, with code equivalent to the following:JMXServiceURL addr =
getAddress()
; returnJMXConnectorFactory.newJMXConnector(addr, env)
;A connector server for which this is inappropriate must override this method so that it either implements the appropriate logic or throws
UnsupportedOperationException
.- Specified by:
toJMXConnector
in interfaceJMXConnectorServerMBean
- Parameters:
env
- client connection parameters of the same sort that could be provided toJMXConnector.connect(Map)
. Can be null, which is equivalent to an empty map.- Returns:
- a client stub that can be used to make a new connection to this connector server.
- Throws:
UnsupportedOperationException
- if this connector server does not support the generation of client stubs.IllegalStateException
- if the JMXConnectorServer is not started (seeJMXConnectorServerMBean.isActive()
).IOException
- if a communications problem means that a stub cannot be created.
-
getNotificationInfo
public MBeanNotificationInfo[] getNotificationInfo()
Returns an array indicating the notifications that this MBean sends. The implementation in
JMXConnectorServer
returns an array with one element, indicating that it can emit notifications of classJMXConnectionNotification
with the types defined in that class. A subclass that can emit other notifications should return an array that contains this element plus descriptions of the other notifications.- Specified by:
getNotificationInfo
in interfaceNotificationBroadcaster
- Overrides:
getNotificationInfo
in classNotificationBroadcasterSupport
- Returns:
- the array of possible notifications.
-
connectionOpened
protected void connectionOpened(String connectionId, String message, Object userData)
Called by a subclass when a new client connection is opened. Adds
connectionId
to the list returned bygetConnectionIds()
, then emits aJMXConnectionNotification
with typeJMXConnectionNotification.OPENED
.- Parameters:
connectionId
- the ID of the new connection. This must be different from the ID of any connection previously opened by this connector server.message
- the message for the emittedJMXConnectionNotification
. Can be null. SeeNotification.getMessage()
.userData
- theuserData
for the emittedJMXConnectionNotification
. Can be null. SeeNotification.getUserData()
.- Throws:
NullPointerException
- ifconnectionId
is null.
-
connectionClosed
protected void connectionClosed(String connectionId, String message, Object userData)
Called by a subclass when a client connection is closed normally. Removes
connectionId
from the list returned bygetConnectionIds()
, then emits aJMXConnectionNotification
with typeJMXConnectionNotification.CLOSED
.- Parameters:
connectionId
- the ID of the closed connection.message
- the message for the emittedJMXConnectionNotification
. Can be null. SeeNotification.getMessage()
.userData
- theuserData
for the emittedJMXConnectionNotification
. Can be null. SeeNotification.getUserData()
.- Throws:
NullPointerException
- ifconnectionId
is null.
-
connectionFailed
protected void connectionFailed(String connectionId, String message, Object userData)
Called by a subclass when a client connection fails. Removes
connectionId
from the list returned bygetConnectionIds()
, then emits aJMXConnectionNotification
with typeJMXConnectionNotification.FAILED
.- Parameters:
connectionId
- the ID of the failed connection.message
- the message for the emittedJMXConnectionNotification
. Can be null. SeeNotification.getMessage()
.userData
- theuserData
for the emittedJMXConnectionNotification
. Can be null. SeeNotification.getUserData()
.- Throws:
NullPointerException
- ifconnectionId
is null.
-
preRegister
public ObjectName preRegister(MBeanServer mbs, ObjectName name)
Called by an MBean server when this connector server is registered in that MBean server. This connector server becomes attached to the MBean server and its
getMBeanServer()
method will returnmbs
.If this connector server is already attached to an MBean server, this method has no effect. The MBean server it is attached to is not necessarily the one it is being registered in.
- Specified by:
preRegister
in interfaceMBeanRegistration
- Parameters:
mbs
- the MBean server in which this connection server is being registered.name
- The object name of the MBean.- Returns:
- The name under which the MBean is to be registered.
- Throws:
NullPointerException
- ifmbs
orname
is null.
-
postRegister
public void postRegister(Boolean registrationDone)
Description copied from interface:MBeanRegistration
Allows the MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed.If the implementation of this method throws a
RuntimeException
or anError
, the MBean Server will rethrow those inside aRuntimeMBeanException
orRuntimeErrorException
, respectively. However, throwing an exception inpostRegister
will not change the state of the MBean: if the MBean was already registered (registrationDone
istrue
), the MBean will remain registered.This might be confusing for the code calling
createMBean()
orregisterMBean()
, as such code might assume that MBean registration has failed when such an exception is raised. Therefore it is recommended that implementations ofpostRegister
do not throw Runtime Exceptions or Errors if it can be avoided.- Specified by:
postRegister
in interfaceMBeanRegistration
- Parameters:
registrationDone
- Indicates whether or not the MBean has been successfully registered in the MBean server. The value false means that the registration phase has failed.
-
preDeregister
public void preDeregister() throws Exception
Called by an MBean server when this connector server is unregistered from that MBean server. If this connector server was attached to that MBean server by being registered in it, and if the connector server is still active, then unregistering it will call the
stop
method. If thestop
method throws an exception, the unregistration attempt will fail. It is recommended to call thestop
method explicitly before unregistering the MBean.- Specified by:
preDeregister
in interfaceMBeanRegistration
- Throws:
IOException
- if thrown by thestop
method.Exception
- This exception will be caught by the MBean server and re-thrown as anMBeanRegistrationException
.
-
postDeregister
public void postDeregister()
Description copied from interface:MBeanRegistration
Allows the MBean to perform any operations needed after having been unregistered in the MBean server.If the implementation of this method throws a
RuntimeException
or anError
, the MBean Server will rethrow those inside aRuntimeMBeanException
orRuntimeErrorException
, respectively. However, throwing an exception inpostDeregister
will not change the state of the MBean: the MBean was already successfully deregistered and will remain so.This might be confusing for the code calling
unregisterMBean()
, as it might assume that MBean deregistration has failed. Therefore it is recommended that implementations ofpostDeregister
do not throw Runtime Exceptions or Errors if it can be avoided.- Specified by:
postDeregister
in interfaceMBeanRegistration
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/management/remote/JMXConnectorServer.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.