KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > management > remote > JMXConnector

javax.management.remote
Interface JMXConnector

All Known Implementing Classes:
RMIConnector
See Also:
Top Examples, JMXConnectorFactory.connect, connect

void addConnectionNotificationListener(NotificationListener listener,
                                       NotificationFilter filter,
                                       Object handback)
See Also:
NotificationBroadcaster.addNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object), removeConnectionNotificationListener(javax.management.NotificationListener), NullPointerException, JMXConnectionNotification
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void close()
           throws IOException
See Also:
getMBeanServerConnection()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void connect()
             throws IOException
See Also:
SecurityException, connect(null)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void connect(Map<String,?> env)
             throws IOException
See Also:
SecurityException, close()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final String CREDENTIALS
See Also:
JMXAuthenticator
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String getConnectionId()
                       throws IOException
See Also:
JMXConnectionNotification
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


MBeanServerConnection getMBeanServerConnection()
                                               throws IOException
See Also:
connect, getMBeanServerConnection(null), JMXServerErrorException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


MBeanServerConnection getMBeanServerConnection(Subject delegationSubject)
                                               throws IOException
See Also:
connect, JMXServerErrorException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void removeConnectionNotificationListener(NotificationListener listener)
                                          throws ListenerNotFoundException
See Also:
NotificationEmitter.removeNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object), addConnectionNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object), removeConnectionNotificationListener(NotificationListener, NotificationFilter, Object), NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void removeConnectionNotificationListener(NotificationListener l,
                                          NotificationFilter f,
                                          Object handback)
                                          throws ListenerNotFoundException
See Also:
NotificationEmitter.removeNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object), addConnectionNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object), removeConnectionNotificationListener(NotificationListener)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags