Uses of Interface
org.hibernate.service.Service
-
Packages that use Service Package Description org.hibernate.boot.cfgxml.spi An SPI service for processing and handlingcfg.xmlfiles.org.hibernate.boot.registry Defines service registry contracts a program may use for configuring Hibernate.org.hibernate.boot.registry.classloading.spi The class loading service SPI.org.hibernate.boot.registry.selector.spi Defines actual contract used for strategy selection.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.bytecode.spi Package defining bytecode code enhancement (instrumentation) support.org.hibernate.cache This package defines the API of the second-level cache service.org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.org.hibernate.cache.spi.support This package provides a framework intended to reduce the work needed to implement a caching provider.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.engine.config.spi Defines the SPI of the configuration service.org.hibernate.engine.jdbc.batch.spi Defines contracts for JDBC batching support.org.hibernate.engine.jdbc.connections.spi Defines SPI contracts for obtaining JDBCConnections from a provider implemented as a service.org.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.mutation.spi org.hibernate.engine.jdbc.spi SPI contracts supporting various aspects of JDBC interaction.org.hibernate.engine.jndi.spi The SPI contracts for integration with JNDI.org.hibernate.engine.query.spi An SPI for dealing with parameters of native queries.org.hibernate.engine.transaction.jta.platform.spi An SPI for integrating with container-provided implementations of JTA.org.hibernate.event.service.spi An SPI for the event listener registration service.org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession.org.hibernate.id.factory Defines a service for creating id generators.org.hibernate.integrator.spi An SPI for extensions which integrate with Hibernate via the JavaServiceLoaderfacility.org.hibernate.loader.ast.spi org.hibernate.persister.spi An SPI for integrating custom entity and collection persisters.org.hibernate.property.access.spi An SPI abstracting how persistent attributes of an entity or embeddable type are accessed by Hibernate.org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilderwith additional functionality by registering aService.org.hibernate.query.sqm.mutation.spi SPI for handling SQM UPDATE and DELETE queriesorg.hibernate.resource.beans.spi Defines an SPI for integration with CDI-like containers.org.hibernate.resource.transaction.spi Extended SPI contracts for the resource-level transaction capabilities of Hibernate.org.hibernate.service Defines a framework for pluggable services, allowing for customization of key components of Hibernate, and abstraction of these components as SPI interfaces.org.hibernate.service.spi Defines an SPI for integrating pluggable services.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.results.jdbc.spi org.hibernate.stat.spi An SPI allowing customized statistics collection.org.hibernate.tool.schema.spi An SPI for the tooling related to DDL generation, export, migration, and validation. -
-
Uses of Service in org.hibernate.boot.cfgxml.spi
Subinterfaces of Service in org.hibernate.boot.cfgxml.spi Modifier and Type Interface Description interfaceCfgXmlAccessServiceAllows access to anycfg.xmlfiles 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 interfaceStandardServiceInitiator<R extends Service>Contract for an initiator of services that target the standardServiceRegistry.Methods in org.hibernate.boot.registry with type parameters of type Service Modifier and Type Method Description <T extends Service>
StandardServiceRegistryBuilderStandardServiceRegistryBuilder. addService(Class<T> serviceRole, T 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 interfaceClassLoaderServiceA 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 interfaceDialectSelectorinterfaceStrategySelectorService which acts as a registry for named strategy implementations. -
Uses of Service in org.hibernate.boot.spi
Subinterfaces of Service in org.hibernate.boot.spi Modifier and Type Interface Description interfaceSessionFactoryBuilderServiceAllows bootstrapping Hibernate ORM using a customSessionFactoryBuilderImplementor. -
Uses of Service in org.hibernate.bytecode.spi
Subinterfaces of Service in org.hibernate.bytecode.spi Modifier and Type Interface Description interfaceBytecodeProviderContract for providers of bytecode services to Hibernate.interfaceProxyFactoryFactoryAn interface for factories ofproxy factoryinstances. -
Uses of Service in org.hibernate.cache
Subinterfaces of Service in org.hibernate.cache Modifier and Type Interface Description interfaceRegionFactoryDeprecated.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 interfaceCacheImplementorinterfaceRegionFactoryContract for building second-level cache regions, including regions dedicated to storing: entity and collection instances, query result sets, and timestamps used to determine when a cached query result set is stale.Classes in org.hibernate.cache.spi that implement Service Modifier and Type Class Description classAbstractRegionFactory -
Uses of Service in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement Service Modifier and Type Class Description classRegionFactoryTemplate -
Uses of Service in org.hibernate.dialect
Classes in org.hibernate.dialect that implement Service Modifier and Type Class Description static classH2Dialect.OrdinalParameterMarkerStrategy -
Uses of Service in org.hibernate.engine.config.spi
Subinterfaces of Service in org.hibernate.engine.config.spi Modifier and Type Interface Description interfaceConfigurationServiceProvides 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 interfaceBatchBuilderA builder forBatchinstances. -
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 interfaceConnectionProviderA contract for obtaining JDBC connections and, optionally, for pooling connections.interfaceMultiTenantConnectionProviderA specializedConnectionprovider 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 classAbstractDataSourceBasedMultiTenantConnectionProviderImplBasic support for implementations ofMultiTenantConnectionProviderbased on DataSources.classAbstractMultiTenantConnectionProviderBasic support forMultiTenantConnectionProviderimplementations using individualConnectionProviderinstances per tenant behind the scenes.classDataSourceBasedMultiTenantConnectionProviderImplA concrete implementation of theMultiTenantConnectionProvidercontract 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 interfaceRefCursorSupportContract 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 interfaceDialectFactoryA factory for generating Dialect instances.interfaceDialectResolverContract for determining theDialectto use based on information about the database / driver.Classes in org.hibernate.engine.jdbc.dialect.spi that implement Service Modifier and Type Class Description classBasicDialectResolverIntended 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 interfaceJdbcEnvironmentInitial look at this concept we keep talking about with merging information fromDatabaseMetaDataandDialect -
Uses of Service in org.hibernate.engine.jdbc.mutation.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.mutation.spi Modifier and Type Interface Description interfaceMutationExecutorServiceService for creating executors for model mutation operations -
Uses of Service in org.hibernate.engine.jdbc.spi
Subinterfaces of Service in org.hibernate.engine.jdbc.spi Modifier and Type Interface Description interfaceJdbcServicesProvides access to services related to JDBC operations.Classes in org.hibernate.engine.jdbc.spi that implement Service Modifier and Type Class Description classSqlStatementLoggerCentralize logging for SQL statements. -
Uses of Service in org.hibernate.engine.jndi.spi
Subinterfaces of Service in org.hibernate.engine.jndi.spi Modifier and Type Interface Description interfaceJndiServiceService 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 interfaceNativeQueryInterpreterService contract for dealing with native queries. -
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 interfaceJtaPlatformAServicethat defines how Hibernate interacts with JTA on a certain platform.interfaceJtaPlatformResolverAServicedefining a strategy for obtaining aJtaPlatformin configurations where the application 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 interfaceEventListenerRegistryService for accessing eachEventListenerGroupbyEventType, along with convenience methods for managing the listeners registered in eachEventListenerGroup. -
Uses of Service in org.hibernate.event.spi
Subinterfaces of Service in org.hibernate.event.spi Modifier and Type Interface Description interfaceEntityCopyObserverFactory -
Uses of Service in org.hibernate.id.factory
Subinterfaces of Service in org.hibernate.id.factory Modifier and Type Interface Description interfaceIdentifierGeneratorFactoryContract for a factory ofIdentifierGeneratorinstances. -
Uses of Service in org.hibernate.integrator.spi
Subinterfaces of Service in org.hibernate.integrator.spi Modifier and Type Interface Description interfaceIntegratorService -
Uses of Service in org.hibernate.loader.ast.spi
Subinterfaces of Service in org.hibernate.loader.ast.spi Modifier and Type Interface Description interfaceBatchLoaderFactoryFactory forBatchLoaderinstances -
Uses of Service in org.hibernate.persister.spi
Subinterfaces of Service in org.hibernate.persister.spi Modifier and Type Interface Description interfacePersisterClassResolverGiven an entity or collection mapping, resolve the appropriate persister class to use.interfacePersisterFactoryContract for creating persister instances (bothEntityPersisterandCollectionPersistervarieties). -
Uses of Service in org.hibernate.property.access.spi
Subinterfaces of Service in org.hibernate.property.access.spi Modifier and Type Interface Description interfacePropertyAccessStrategyResolverContract for resolving thePropertyAccessStrategyto use. -
Uses of Service in org.hibernate.query.criteria.spi
Subinterfaces of Service in org.hibernate.query.criteria.spi Modifier and Type Interface Description interfaceCriteriaBuilderExtensionInterface which allows extension ofHibernateCriteriaBuilderwith additional functionality by registering aService. -
Uses of Service in org.hibernate.query.sqm.mutation.spi
Subinterfaces of Service in org.hibernate.query.sqm.mutation.spi Modifier and Type Interface Description interfaceSqmMultiTableMutationStrategyProviderPluggable contract for providing customSqmMultiTableMutationStrategyandSqmMultiTableInsertStrategyimplementations. -
Uses of Service in org.hibernate.resource.beans.spi
Subinterfaces of Service in org.hibernate.resource.beans.spi Modifier and Type Interface Description interfaceManagedBeanRegistryA registry forManagedBeaninstances. -
Uses of Service in org.hibernate.resource.transaction.spi
Subinterfaces of Service in org.hibernate.resource.transaction.spi Modifier and Type Interface Description interfaceTransactionCoordinatorBuilderBuilder forTransactionCoordinatorinstances. -
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 classServiceBinding<R extends Service>Models a binding for a particular service.interfaceServiceInitiator<R extends Service>Base contract for an initiator of a service.interfaceSessionFactoryServiceInitiator<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 interfaceSessionFactoryServiceRegistryFactoryContract for builder ofSessionFactoryServiceRegistryinstances.Methods in org.hibernate.service.spi with type parameters of type Service Modifier and Type Method Description <R extends Service>
SessionFactoryServiceRegistryBuilderSessionFactoryServiceRegistryBuilder. addService(Class<R> serviceRole, R service)<R extends Service>
voidServiceBinding.ServiceLifecycleOwner. configureService(ServiceBinding<R> binding)<T extends Service>
TServiceRegistryImplementor. fromRegistryOrChildren(Class<T> serviceRole)<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) -
Uses of Service in org.hibernate.sql.ast.spi
Subinterfaces of Service in org.hibernate.sql.ast.spi Modifier and Type Interface Description interfaceParameterMarkerStrategyStrategy for generating parameter markers used in preparable SQL strings. -
Uses of Service in org.hibernate.sql.results.jdbc.spi
Subinterfaces of Service in org.hibernate.sql.results.jdbc.spi Modifier and Type Interface Description interfaceJdbcValuesMappingProducerProviderPluggable contract for providing customJdbcValuesMappingProducerimplementations. -
Uses of Service in org.hibernate.stat.spi
Subinterfaces of Service in org.hibernate.stat.spi Modifier and Type Interface Description interfaceStatisticsImplementorA service SPI for collecting statistics about various events that occur at runtime. -
Uses of Service in org.hibernate.tool.schema.spi
Subinterfaces of Service in org.hibernate.tool.schema.spi Modifier and Type Interface Description interfaceSchemaManagementToolContract for schema management tool integration.interfaceSqlScriptCommandExtractorContract for extracting statements from source/import/init scripts.
-