Interface MBeanServerConnectionFactory
-
- All Known Implementing Classes:
JSR160MBeanServerConnectionFactory
,MEJBMBeanServerConnectionFactory
public interface MBeanServerConnectionFactory
Factory to create a remote JMX MBean server connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
destroy()
Destroys the factory and any underlying IO sockets.MBeanServerConnection
getServerConnection(RuntimeConfiguration configuration)
Create a new MBean server connection.
-
-
-
Method Detail
-
getServerConnection
MBeanServerConnection getServerConnection(RuntimeConfiguration configuration) throws Exception
Create a new MBean server connection.- Parameters:
configuration
- Runtime Configuration- Returns:
- a MBeanServerConnection
- Throws:
Exception
- if the connection cannot be done
-
destroy
void destroy()
Destroys the factory and any underlying IO sockets.
-
-