Package org.hibernate.service.spi
Interface Manageable
-
- All Known Subinterfaces:
OptionallyManageable
@Deprecated public interface ManageableDeprecated.Scheduled for removal in 6.0; see https://hibernate.atlassian.net/browse/HHH-14847 and https://hibernate.atlassian.net/browse/HHH-14846OptionalServicecontract for services which can be managed in JMX
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default java.lang.ObjectgetManagementBean()Deprecated.The management bean (MBean) for this service.default java.lang.StringgetManagementDomain()Deprecated.Get the domain name to be used in registering the management bean.default java.lang.StringgetManagementServiceType()Deprecated.Allows the service to specify a special 'serviceType' portion of the object name.
-
-
-
Method Detail
-
getManagementDomain
default java.lang.String getManagementDomain()
Deprecated.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.- Returns:
- The management domain.
-
getManagementServiceType
default java.lang.String getManagementServiceType()
Deprecated.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.- Returns:
- The custom 'serviceType' name.
-
getManagementBean
default java.lang.Object getManagementBean()
Deprecated.The management bean (MBean) for this service.- Returns:
- The management bean.
-
-