Package org.apache.catalina
Interface JmxEnabled
- 
- All Superinterfaces:
- javax.management.MBeanRegistration
 - All Known Implementing Classes:
- AbstractAccessLogValve,- AccessLogValve,- AuthenticatorBase,- BackupManager,- BasicAuthenticator,- ClusterManagerBase,- ClusterSingleSignOn,- CombinedRealm,- Connector,- ContainerBase,- CrawlerSessionManagerValve,- DataSourceRealm,- DeltaManager,- DigestAuthenticator,- ErrorReportValve,- ExtendedAccessLogValve,- ExtractingRoot,- FailedContext,- FormAuthenticator,- JAASMemoryLoginModule,- JAASRealm,- JDBCAccessLogValve,- JDBCRealm,- JNDIRealm,- JsonErrorReportValve,- JvmRouteBinderValve,- LifecycleMBeanBase,- LoadBalancerDrainingValve,- LockOutRealm,- ManagerBase,- MapperListener,- MemoryRealm,- NamingResourcesImpl,- NonLoginAuthenticator,- NullRealm,- PersistentManager,- PersistentManagerBase,- PersistentValve,- RealmBase,- RemoteAddrValve,- RemoteCIDRValve,- RemoteHostValve,- RemoteIpValve,- ReplicatedContext,- ReplicationValve,- RequestFilterValve,- RewriteValve,- SemaphoreValve,- SimpleTcpCluster,- SingleSignOn,- SpnegoAuthenticator,- SSLAuthenticator,- SSLValve,- StandardContext,- StandardEngine,- StandardHost,- StandardManager,- StandardRoot,- StandardServer,- StandardService,- StandardThreadExecutor,- StandardWrapper,- StuckThreadDetectionValve,- Tomcat.ExistingStandardWrapper,- UserDatabaseRealm,- ValveBase,- WebappLoader
 
 public interface JmxEnabled extends javax.management.MBeanRegistrationThis interface is implemented by components that will be registered with an MBean server when they are created and unregistered when they are destroyed. It is primarily intended to be implemented by components that implementLifecyclebut is not exclusively for them.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDomain()javax.management.ObjectNamegetObjectName()voidsetDomain(java.lang.String domain)Specify the domain under which this component should be registered.
 
- 
- 
- 
Method Detail- 
getDomainjava.lang.String getDomain() - Returns:
- the domain under which this component will be / has been registered.
 
 - 
setDomainvoid setDomain(java.lang.String domain) Specify the domain under which this component should be registered. Used with components that cannot (easily) navigate the component hierarchy to determine the correct domain to use.- Parameters:
- domain- The name of the domain under which this component should be registered
 
 - 
getObjectNamejavax.management.ObjectName getObjectName() - Returns:
- the name under which this component has been registered with JMX.
 
 
- 
 
-