Package com.amazonaws.jmx.spi
Interface SdkMBeanRegistry
-
- All Known Implementing Classes:
SdkMBeanRegistrySupport
public interface SdkMBeanRegistrySPI used to register MBeans and can survive the absence of JMX.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSdkMBeanRegistry.Factory
-
Field Summary
Fields Modifier and Type Field Description static SdkMBeanRegistryNONE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisMBeanRegistered(String objectName)Returns true if the the MBean under the given object name is currently registered; false otherwise.booleanregisterMetricAdminMBean(String objectName)Returns true if the registration of the admin MBean under the given object name succeeded; false otherwise.booleanunregisterMBean(String objectName)Returns true if the unregistration of the MBean under the given object name succeeded; false otherwise.
-
-
-
Field Detail
-
NONE
static final SdkMBeanRegistry NONE
-
-
Method Detail
-
registerMetricAdminMBean
boolean registerMetricAdminMBean(String objectName)
Returns true if the registration of the admin MBean under the given object name succeeded; false otherwise.
-
unregisterMBean
boolean unregisterMBean(String objectName)
Returns true if the unregistration of the MBean under the given object name succeeded; false otherwise.
-
isMBeanRegistered
boolean isMBeanRegistered(String objectName)
Returns true if the the MBean under the given object name is currently registered; false otherwise.
-
-