Uses of Interface
org.hibernate.service.Service
-
Packages that use Service Package Description org.hibernate.boot.cfgxml.spi org.hibernate.boot.registry Defines service registry contracts application are likely to want to utilize for configuring Hibernate behavior.org.hibernate.boot.registry.classloading.spi The class loading service SPI.org.hibernate.boot.registry.selector.spi Defines actual contract used for strategy selection :StrategySelector
.org.hibernate.cache org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching allowing "caching back ends" to be plugged in as a caching provider.org.hibernate.cache.spi.support Package intended for simplifying the worked needed to implement a caching provider.org.hibernate.engine.config.spi SPI Package for the configuration service.org.hibernate.engine.jdbc.batch.spi Defines contracts for JDBC batching support.org.hibernate.engine.jdbc.connections.spi Defines contracts for accessing JDBC Connectionsorg.hibernate.engine.jdbc.cursor.spi Defines contracts for JDBC REF_CURSOR support.org.hibernate.engine.jdbc.dialect.spi Contracts supporting Dialect resolution (from JDBC metadata) and Dialect building.org.hibernate.engine.jdbc.env.spi org.hibernate.engine.jdbc.spi SPI contracts for supporting various aspects of JDBC interactionorg.hibernate.engine.jndi.spi The SPI contracts for Hibernate JNDI supportorg.hibernate.engine.query.spi Defines support for query plans and stored metadata about queriesorg.hibernate.engine.spi org.hibernate.engine.transaction.jta.platform.spi org.hibernate.event.service.spi org.hibernate.hql.spi org.hibernate.id.factory.spi org.hibernate.integrator.spi org.hibernate.jmx.spi org.hibernate.persister.spi org.hibernate.property.access.spi Defines strategies for accessing the persistent properties of an entity or composite.org.hibernate.resource.beans.spi org.hibernate.resource.transaction.spi Extended SPI contracts for the resource-level transaction capabilities of Hibernate.org.hibernate.secure.spi org.hibernate.service org.hibernate.service.spi org.hibernate.stat.spi org.hibernate.tool.hbm2ddl org.hibernate.tool.schema.spi -
-
Uses of Service in org.hibernate.boot.cfgxml.spi
Subinterfaces of Service in org.hibernate.boot.cfgxml.spi Modifier and Type Interface Description interface
CfgXmlAccessService
Allows access to anycfg.xml
files specified for bootstrapping. -
Uses of Service in org.hibernate.boot.registry
Classes in org.hibernate.boot.registry with type parameters of type Service Modifier and Type Interface Description interface
StandardServiceInitiator<R extends Service>
Contract for an initiator of services that target the standardServiceRegistry
.Methods in org.hibernate.boot.registry with parameters of type Service Modifier and Type Method Description StandardServiceRegistryBuilder
StandardServiceRegistryBuilder. addService(Class serviceRole, Service service)
Adds a user-provided service. -
Uses of Service in org.hibernate.boot.registry.classloading.spi
Subinterfaces of Service in org.hibernate.boot.registry.classloading.spi Modifier and Type Interface Description interface
ClassLoaderService
A service for interacting with class loaders. -
Uses of Service in org.hibernate.boot.registry.selector.spi
Subinterfaces of Service in org.hibernate.boot.registry.selector.spi Modifier and Type Interface Description interface
StrategySelector
Service which acts as a registry for named strategy implementations. -
Uses of Service in org.hibernate.cache
Subinterfaces of Service in org.hibernate.cache Modifier and Type Interface Description interface
RegionFactory
Deprecated.Moved, but still need this definition for ehcache -
Uses of Service in org.hibernate.cache.spi
Subinterfaces of Service in org.hibernate.cache.spi Modifier and Type Interface Description interface
CacheImplementor
SPI contract for Hibernate's second-level cache engineinterface
RegionFactory
Contract for building second level cache regions.Classes in org.hibernate.cache.spi that implement Service Modifier and Type Class Description class
AbstractRegionFactory
-
Uses of Service in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement Service Modifier and Type Class Description class
RegionFactoryTemplate
-
Uses of Service in org.hibernate.engine.config.spi
Subinterfaces of Service in org.hibernate.engine.config.spi Modifier and Type Interface Description interface
ConfigurationService
Provides access to the initial user-provided configuration values. -
Uses of Service in org.hibernate.engine.jdbc.batch.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.batch.spi Modifier and Type Interface Description interface
BatchBuilder
A builder forBatch
instances -
Uses of Service in org.hibernate.engine.jdbc.connections.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.connections.spi Modifier and Type Interface Description interface
ConnectionProvider
A contract for obtaining JDBC connections.interface
MultiTenantConnectionProvider
A specialized Connection provider contract used when the application is using multi-tenancy support requiring tenant aware connections.Classes in org.hibernate.engine.jdbc.connections.spi that implement Service Modifier and Type Class Description class
AbstractDataSourceBasedMultiTenantConnectionProviderImpl
Basic support for implementations ofMultiTenantConnectionProvider
based on DataSources.class
AbstractMultiTenantConnectionProvider
Basic support forMultiTenantConnectionProvider
implementations using individualConnectionProvider
instances per tenant behind the scenes.class
DataSourceBasedMultiTenantConnectionProviderImpl
A concrete implementation of theMultiTenantConnectionProvider
contract bases on a number of reasonable assumptions. -
Uses of Service in org.hibernate.engine.jdbc.cursor.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.cursor.spi Modifier and Type Interface Description interface
RefCursorSupport
Contract for JDBC REF_CURSOR support. -
Uses of Service in org.hibernate.engine.jdbc.dialect.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.dialect.spi Modifier and Type Interface Description interface
DialectFactory
A factory for generating Dialect instances.interface
DialectResolver
Contract for determining theDialect
to use based on information about the database / driver.Classes in org.hibernate.engine.jdbc.dialect.spi that implement Service Modifier and Type Class Description class
BasicDialectResolver
Intended as support for custom resolvers which match a single db name (with optional version info). -
Uses of Service in org.hibernate.engine.jdbc.env.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.env.spi Modifier and Type Interface Description interface
JdbcEnvironment
Initial look at this concept we keep talking about with merging information fromDatabaseMetaData
andDialect
-
Uses of Service in org.hibernate.engine.jdbc.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.spi Modifier and Type Interface Description interface
JdbcServices
Contract for services around JDBC operations. -
Uses of Service in org.hibernate.engine.jndi.spi
Subinterfaces of Service in org.hibernate.engine.jndi.spi Modifier and Type Interface Description interface
JndiService
Service providing simplified access to JNDI related features needed by Hibernate. -
Uses of Service in org.hibernate.engine.query.spi
Subinterfaces of Service in org.hibernate.engine.query.spi Modifier and Type Interface Description interface
NativeQueryInterpreter
Service contract for dealing with native queries. -
Uses of Service in org.hibernate.engine.spi
Subinterfaces of Service in org.hibernate.engine.spi Modifier and Type Interface Description interface
CacheImplementor
Deprecated.Moved toCacheImplementor
-
Uses of Service in org.hibernate.engine.transaction.jta.platform.spi
Subinterfaces of Service in org.hibernate.engine.transaction.jta.platform.spi Modifier and Type Interface Description interface
JtaPlatform
Defines how we interact with various JTA services on the given platform/environment.interface
JtaPlatformResolver
Service for defining how to resolve or determine theJtaPlatform
to use in configurations where the user did not explicitly specify one. -
Uses of Service in org.hibernate.event.service.spi
Subinterfaces of Service in org.hibernate.event.service.spi Modifier and Type Interface Description interface
EventListenerRegistry
Service for accessing eachEventListenerGroup
byEventType
, as well as convenience methods for managing the listeners registered in eachEventListenerGroup
. -
Uses of Service in org.hibernate.hql.spi
Subinterfaces of Service in org.hibernate.hql.spi Modifier and Type Interface Description interface
QueryTranslatorFactory
Facade for generation ofQueryTranslator
andFilterTranslator
instances. -
Uses of Service in org.hibernate.id.factory.spi
Subinterfaces of Service in org.hibernate.id.factory.spi Modifier and Type Interface Description interface
MutableIdentifierGeneratorFactory
Let people register strategies -
Uses of Service in org.hibernate.integrator.spi
Subinterfaces of Service in org.hibernate.integrator.spi Modifier and Type Interface Description interface
IntegratorService
-
Uses of Service in org.hibernate.jmx.spi
Subinterfaces of Service in org.hibernate.jmx.spi Modifier and Type Interface Description interface
JmxService
Deprecated.Scheduled for removal in 6.0; see https://hibernate.atlassian.net/browse/HHH-14847 and https://hibernate.atlassian.net/browse/HHH-14846Method parameters in org.hibernate.jmx.spi with type arguments of type Service Modifier and Type Method Description void
JmxService. registerService(Manageable service, Class<? extends Service> serviceRole)
Deprecated.Handles registration of a manageable service. -
Uses of Service in org.hibernate.persister.spi
Subinterfaces of Service in org.hibernate.persister.spi Modifier and Type Interface Description interface
PersisterClassResolver
Given an entity or collection mapping, resolve the appropriate persister class to use.interface
PersisterFactory
Contract for creating persister instances (bothEntityPersister
andCollectionPersister
varieties). -
Uses of Service in org.hibernate.property.access.spi
Subinterfaces of Service in org.hibernate.property.access.spi Modifier and Type Interface Description interface
PropertyAccessStrategyResolver
Contract for resolving the PropertyAccessStrategy to use. -
Uses of Service in org.hibernate.resource.beans.spi
Subinterfaces of Service in org.hibernate.resource.beans.spi Modifier and Type Interface Description interface
ManagedBeanRegistry
A registry for ManagedBean instances. -
Uses of Service in org.hibernate.resource.transaction.spi
Subinterfaces of Service in org.hibernate.resource.transaction.spi Modifier and Type Interface Description interface
TransactionCoordinatorBuilder
Builder for TransactionCoordinator instances -
Uses of Service in org.hibernate.secure.spi
Subinterfaces of Service in org.hibernate.secure.spi Modifier and Type Interface Description interface
JaccService
Deprecated.Support for JACC will be removed in 6.0 -
Uses of Service in org.hibernate.service
Methods in org.hibernate.service with type parameters of type Service Modifier and Type Method Description <R extends Service>
RServiceRegistry. getService(Class<R> serviceRole)
Retrieve a service by role.default <R extends Service>
RServiceRegistry. requireService(Class<R> serviceRole)
Retrieve a service by role. -
Uses of Service in org.hibernate.service.spi
Classes in org.hibernate.service.spi with type parameters of type Service Modifier and Type Class Description class
ServiceBinding<R extends Service>
Models a binding for a particular serviceinterface
ServiceInitiator<R extends Service>
Base contract for an initiator of a service.interface
SessionFactoryServiceInitiator<R extends Service>
Contract for an initiator of services that target the specialized service registrySessionFactoryServiceRegistry
Subinterfaces of Service in org.hibernate.service.spi Modifier and Type Interface Description interface
SessionFactoryServiceRegistryFactory
Contract for builder ofSessionFactoryServiceRegistry
instances.Methods in org.hibernate.service.spi with type parameters of type Service Modifier and Type Method Description <R extends Service>
voidServiceBinding.ServiceLifecycleOwner. configureService(ServiceBinding<R> binding)
<R extends Service>
RServiceBinding.ServiceLifecycleOwner. initiateService(ServiceInitiator<R> serviceInitiator)
<R extends Service>
voidServiceBinding.ServiceLifecycleOwner. injectDependencies(ServiceBinding<R> binding)
<R extends Service>
ServiceBinding<R>ServiceRegistryImplementor. locateServiceBinding(Class<R> serviceRole)
Locate the binding for the given role.<R extends Service>
voidServiceBinding.ServiceLifecycleOwner. startService(ServiceBinding<R> binding)
<R extends Service>
voidServiceBinding.ServiceLifecycleOwner. stopService(ServiceBinding<R> binding)
Methods in org.hibernate.service.spi with parameters of type Service Modifier and Type Method Description SessionFactoryServiceRegistryBuilder
SessionFactoryServiceRegistryBuilder. addService(Class serviceRole, Service service)
-
Uses of Service in org.hibernate.stat.spi
Subinterfaces of Service in org.hibernate.stat.spi Modifier and Type Interface Description interface
StatisticsImplementor
Statistics SPI for the Hibernate core. -
Uses of Service in org.hibernate.tool.hbm2ddl
Subinterfaces of Service in org.hibernate.tool.hbm2ddl Modifier and Type Interface Description interface
ImportSqlCommandExtractor
Contract for extracting statements from source/import/init scripts.Classes in org.hibernate.tool.hbm2ddl that implement Service Modifier and Type Class Description class
MultipleLinesSqlCommandExtractor
Class responsible for extracting SQL statements from import script.class
SingleLineSqlCommandExtractor
Class responsible for extracting SQL statements from import script. -
Uses of Service in org.hibernate.tool.schema.spi
Subinterfaces of Service in org.hibernate.tool.schema.spi Modifier and Type Interface Description interface
SchemaManagementTool
Contract for schema management tool integration.
-