接口 Manageable
-
- 所有已知子接口:
OptionallyManageable
- 所有已知实现类:
BatchBuilderImpl,StatisticsImpl
public interface ManageableOptionalServicecontract for services which can be managed in JMX- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 默认方法 修饰符和类型 方法 说明 default ObjectgetManagementBean()The management bean (MBean) for this service.default StringgetManagementDomain()Get the domain name to be used in registering the management bean.default StringgetManagementServiceType()Allows the service to specify a special 'serviceType' portion of the object name.
-
-
-
方法详细资料
-
getManagementDomain
default String getManagementDomain()
Get the domain name to be used in registering the management bean. May benullto indicate Hibernate's default domain (org.hibernate.core) should be used.- 返回:
- The management domain.
-
getManagementServiceType
default String getManagementServiceType()
Allows the service to specify a special 'serviceType' portion of the object name.nullindicates we should use the default scheme, which is to use the name of the service impl class for this purpose.- 返回:
- The custom 'serviceType' name.
-
getManagementBean
default Object getManagementBean()
The management bean (MBean) for this service.- 返回:
- The management bean.
-
-