Package org.apache.uima.resource
Interface ManagementObject
- All Known Subinterfaces:
AnalysisEngineManagement
,CasPoolManagement
- All Known Implementing Classes:
AnalysisEngineManagementImpl
,CasPoolManagementImpl
public interface ManagementObject
Base interface for objects that expose a monitoring and management interface to a UIMA component
or some part of the UIMA framework.
In this implementation, objects implementing this interface will always be JMX-compatible MBeans that you can register with an MBeanServer. For information on JMX see http://java.sun.com/j2se/1.5.0/docs/api/javax/management/package-summary.html
-
Method Summary
Modifier and TypeMethodDescriptionGets a valid JMX MBean name that is unique among all ManagementObjects in this JVM.
-
Method Details
-
getUniqueMBeanName
String getUniqueMBeanName()Gets a valid JMX MBean name that is unique among all ManagementObjects in this JVM. (Technically, it is unique only among ManagementObjects objects loaded by the same ClassLoader, which is whatever ClassLoader was used to load the UIMA Framework classes.)If you are running with JRE 1.5, this is the name used to register this object with the platform MBeanServer.
- Returns:
- a unique MBean name
-