Uses of Interface
org.hibernate.service.ServiceRegistry
-
Packages that use ServiceRegistry Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.jaxb.internal org.hibernate.boot.model This package defines the boot-time metamodel, which is an interpretation of the domain model (entity classes, embeddable classes, and attributes) and the mapping of these "domain model parts" to the database.org.hibernate.boot.model.relational Some SPIs related to DDL generation and schema management.org.hibernate.boot.registry Defines service registry contracts a program may use for configuring Hibernate.org.hibernate.boot.registry.internal The internals for building service registries.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.cfg This package defines APIs for configuring Hibernate.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.engine.jdbc.env.internal org.hibernate.engine.transaction.jta.platform.internal A range of container-specific implementations ofJtaPlatform
.org.hibernate.envers.boot.internal org.hibernate.envers.boot.spi org.hibernate.envers.internal.entities.mapper org.hibernate.envers.internal.entities.mapper.id org.hibernate.envers.internal.entities.mapper.relation org.hibernate.envers.internal.revisioninfo org.hibernate.envers.internal.tools org.hibernate.generator This package defines an abstraction over all kinds of automatic value generation, including id generation and version number generation.org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.id.enhanced Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configuration.org.hibernate.id.factory.internal Implementation of the SPI for id generator factories.org.hibernate.id.factory.spi Contains an SPI for id generator factories.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.jpa.event.internal Internal details of implementing support for JPA callbacksorg.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.model.domain Defines the runtime domain metamodel, which describes the Java aspect of the application's domain model parts (entities, attributes).org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.org.hibernate.metamodel.spi An SPI supporting custom instantiation of entity instances and embeddable objects.org.hibernate.persister.collection.mutation Defines support for performing mutation operations against collections.org.hibernate.property.access.internal Contains various implementations ofPropertyAccessStrategy
.org.hibernate.query.sqm.spi SPI-level SQM contractsorg.hibernate.resource.beans.container.internal An implementation of the bean container SPI based on CDI.org.hibernate.resource.beans.internal org.hibernate.resource.jdbc.spi An SPI for managing JDBC connections and other heavyweight resources, based around the idea of a "JDBC session".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.internal Implementation of the SPI for integrating pluggable services.org.hibernate.service.spi Defines an SPI for integrating pluggable services.org.hibernate.spatial.contributor org.hibernate.spatial.dialect.cockroachdb SpatialDialect
s for CockroachDBorg.hibernate.spatial.dialect.h2gis org.hibernate.spatial.dialect.mariadb org.hibernate.spatial.dialect.mysql org.hibernate.spatial.dialect.oracle org.hibernate.spatial.dialect.postgis org.hibernate.spatial.dialect.sqlserver org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.testing org.hibernate.testing.boot org.hibernate.testing.schema org.hibernate.testing.transaction org.hibernate.tool.schema.extract.internal Implementation of the SPI for schema information extraction from the database via JDBC.org.hibernate.tool.schema.extract.spi Defines an SPI for schema information extraction from the database via JDBC.org.hibernate.tool.schema.internal An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation.org.hibernate.tool.schema.internal.exec Support for exporting generated DDL to the database or to SQL scripts.org.hibernate.tool.schema.spi An SPI for tooling related to DDL generation, export, migration, and validation.org.hibernate.type.spi Defines a registry for HibernateType
s. -
-
Uses of ServiceRegistry in org.hibernate.boot
Methods in org.hibernate.boot that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
MetadataSources. getServiceRegistry()
Methods in org.hibernate.boot with parameters of type ServiceRegistry Modifier and Type Method Description protected static boolean
MetadataSources. isExpectedServiceRegistryType(ServiceRegistry serviceRegistry)
Constructors in org.hibernate.boot with parameters of type ServiceRegistry Constructor Description MetadataSources(ServiceRegistry serviceRegistry)
Create a new instance using the givenServiceRegistry
.MetadataSources(ServiceRegistry serviceRegistry, XmlMappingBinderAccess xmlMappingBinderAccess)
Create a new instance using the givenServiceRegistry
. -
Uses of ServiceRegistry in org.hibernate.boot.internal
Constructors in org.hibernate.boot.internal with parameters of type ServiceRegistry Constructor Description ClassLoaderAccessImpl(ClassLoader tempClassLoader, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.boot.jaxb.internal
Constructors in org.hibernate.boot.jaxb.internal with parameters of type ServiceRegistry Constructor Description MappingBinder(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.boot.model
Methods in org.hibernate.boot.model that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
FunctionContributions. getServiceRegistry()
Access to services.Methods in org.hibernate.boot.model with parameters of type ServiceRegistry Modifier and Type Method Description void
TypeContributor. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Contribute types -
Uses of ServiceRegistry in org.hibernate.boot.model.relational
Methods in org.hibernate.boot.model.relational that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
Database. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.boot.registry
Subinterfaces of ServiceRegistry in org.hibernate.boot.registry Modifier and Type Interface Description interface
BootstrapServiceRegistry
Provides the most basic services such as class loading.interface
StandardServiceRegistry
Specialization of theServiceRegistry
contract mainly for type safety.Methods in org.hibernate.boot.registry with parameters of type ServiceRegistry Modifier and Type Method Description static void
BootstrapServiceRegistryBuilder. destroy(ServiceRegistry serviceRegistry)
Destroy a service registry.static void
StandardServiceRegistryBuilder. destroy(ServiceRegistry serviceRegistry)
Destroy a service registry. -
Uses of ServiceRegistry in org.hibernate.boot.registry.internal
Classes in org.hibernate.boot.registry.internal that implement ServiceRegistry Modifier and Type Class Description class
BootstrapServiceRegistryImpl
ServiceRegistry
implementation containing specialized "bootstrap" services, specifically:ClassLoaderService
IntegratorService
StrategySelector
class
StandardServiceRegistryImpl
Standard Hibernate implementation of the standard service registry.Methods in org.hibernate.boot.registry.internal that return ServiceRegistry Modifier and Type Method Description @Nullable ServiceRegistry
BootstrapServiceRegistryImpl. getParentServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi with parameters of type ServiceRegistry Modifier and Type Method Description static boolean
MetadataBuildingContext. isPreferJavaTimeJdbcTypesEnabled(ServiceRegistry serviceRegistry)
static boolean
MetadataBuildingContext. isPreferNativeEnumTypesEnabled(ServiceRegistry serviceRegistry)
Constructors in org.hibernate.boot.spi with parameters of type ServiceRegistry Constructor Description XmlMappingBinderAccess(ServiceRegistry serviceRegistry)
XmlMappingBinderAccess(ServiceRegistry serviceRegistry, Function<String,Object> configAccess)
-
Uses of ServiceRegistry in org.hibernate.cfg
Methods in org.hibernate.cfg with parameters of type ServiceRegistry Modifier and Type Method Description SessionFactory
Configuration. buildSessionFactory(ServiceRegistry serviceRegistry)
Create aSessionFactory
using the properties and mappings in this configuration. -
Uses of ServiceRegistry in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type ServiceRegistry Modifier and Type Method Description void
AbstractHANADialect. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Deprecated, for removal: This API element is subject to removal in a future version.void
Dialect. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
DialectDelegateWrapper. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
CockroachDialect. contributeCockroachTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
PostgreSQLDialect. contributePostgreSQLTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Allow for extension points to override this onlyvoid
AbstractHANADialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Deprecated, for removal: This API element is subject to removal in a future version.void
CockroachDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
DB2Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
DerbyDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
A callback which allows theDialect
to contribute types.void
DialectDelegateWrapper. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
H2Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
MariaDBDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
MySQLDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
OracleDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
PostgreSQLDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
SQLServerDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
SybaseASEDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
SybaseDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
static JdbcType
PgJdbcHelper. createJdbcType(ServiceRegistry serviceRegistry, String className)
static JdbcTypeConstructor
OracleJdbcHelper. getArrayJdbcTypeConstructor(ServiceRegistry serviceRegistry)
static JdbcType
PgJdbcHelper. getInetJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
PgJdbcHelper. getIntervalJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
PgJdbcHelper. getJsonbJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
PgJdbcHelper. getJsonJdbcType(ServiceRegistry serviceRegistry)
static JdbcTypeConstructor
OracleJdbcHelper. getNestedTableJdbcTypeConstructor(ServiceRegistry serviceRegistry)
static JdbcType
OracleJdbcHelper. getStructJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
PgJdbcHelper. getStructJdbcType(ServiceRegistry serviceRegistry)
static boolean
OracleJdbcHelper. isUsable(ServiceRegistry serviceRegistry)
static boolean
PgJdbcHelper. isUsable(ServiceRegistry serviceRegistry)
protected void
AbstractHANADialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Deprecated, for removal: This API element is subject to removal in a future version.protected void
CockroachDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
DB2Dialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
DerbyDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
Dialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Register ANSI-standard column types using the length limits defined byDialect.getMaxVarcharLength()
,Dialect.getMaxNVarcharLength()
, andDialect.getMaxVarbinaryLength()
.void
DialectDelegateWrapper. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
H2Dialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
MariaDBDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
MySQLDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
OracleDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
PostgreSQLDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
SQLServerDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
protected void
SybaseASEDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.engine.jdbc.env.internal
Methods in org.hibernate.engine.jdbc.env.internal with parameters of type ServiceRegistry Modifier and Type Method Description static boolean
JdbcEnvironmentImpl. isMultiTenancyEnabled(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.engine.transaction.jta.platform.internal
Methods in org.hibernate.engine.transaction.jta.platform.internal that return ServiceRegistry Modifier and Type Method Description protected ServiceRegistry
AbstractJtaPlatform. serviceRegistry()
-
Uses of ServiceRegistry in org.hibernate.envers.boot.internal
Methods in org.hibernate.envers.boot.internal that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
EnversMetadataBuildingContextImpl. getServiceRegistry()
ServiceRegistry
EnversService. getServiceRegistry()
ServiceRegistry
EnversServiceImpl. getServiceRegistry()
Methods in org.hibernate.envers.boot.internal with parameters of type ServiceRegistry Modifier and Type Method Description void
TypeContributorImpl. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.envers.boot.spi
Methods in org.hibernate.envers.boot.spi that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
EnversMetadataBuildingContext. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.envers.internal.entities.mapper
Methods in org.hibernate.envers.internal.entities.mapper with parameters of type ServiceRegistry Modifier and Type Method Description protected void
AbstractMapper. getAndSetValue(PropertyData propertyData, Object source, Object destination, ServiceRegistry serviceRegistry)
Gets the value from the source object and sets the value in the destination object.protected <T> T
AbstractMapper. getValueFromObject(String propertyName, String accessType, Object object, ServiceRegistry serviceRegistry)
Get a value from the specified object.protected <T> T
AbstractMapper. getValueFromObject(PropertyData propertyData, Object object, ServiceRegistry serviceRegistry)
Get a value from the specified object.protected void
AbstractMapper. setValueOnObject(PropertyData propertyData, Object object, Object value, ServiceRegistry serviceRegistry)
Set the specified value on the object. -
Uses of ServiceRegistry in org.hibernate.envers.internal.entities.mapper.id
Methods in org.hibernate.envers.internal.entities.mapper.id that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
AbstractIdMapper. getServiceRegistry()
ServiceRegistry
IdMapper. getServiceRegistry()
Constructors in org.hibernate.envers.internal.entities.mapper.id with parameters of type ServiceRegistry Constructor Description AbstractCompositeIdMapper(Class<?> compositeIdClass, ServiceRegistry serviceRegistry)
AbstractIdMapper(ServiceRegistry serviceRegistry)
SingleIdMapper(ServiceRegistry serviceRegistry)
SingleIdMapper(ServiceRegistry serviceRegistry, PropertyData propertyData)
VirtualEntitySingleIdMapper(ServiceRegistry serviceRegistry, PropertyData propertyData)
-
Uses of ServiceRegistry in org.hibernate.envers.internal.entities.mapper.relation
Constructors in org.hibernate.envers.internal.entities.mapper.relation with parameters of type ServiceRegistry Constructor Description AbstractOneToOneMapper(String entityName, String referencedEntityName, PropertyData propertyData, ServiceRegistry serviceRegistry)
AbstractToOneMapper(ServiceRegistry serviceRegistry, PropertyData propertyData)
OneToOneNotOwningMapper(String notOwningEntityName, String owningEntityName, String owningReferencePropertyName, PropertyData propertyData, ServiceRegistry serviceRegistry)
OneToOnePrimaryKeyJoinColumnMapper(String entityName, String referencedEntityName, PropertyData propertyData, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.envers.internal.revisioninfo
Constructors in org.hibernate.envers.internal.revisioninfo with parameters of type ServiceRegistry Constructor Description DefaultRevisionInfoGenerator(String revisionInfoEntityName, Class<?> revisionInfoClass, Class<? extends RevisionListener> listenerClass, RevisionTimestampValueResolver timestampValueResolver, ServiceRegistry serviceRegistry)
DefaultTrackingModifiedEntitiesRevisionInfoGenerator(String revisionInfoEntityName, Class<?> revisionInfoClass, Class<? extends RevisionListener> listenerClass, RevisionTimestampValueResolver timestampValueResolver, PropertyData modifiedEntityNamesData, ServiceRegistry serviceRegistry)
ModifiedEntityNamesReader(Class<?> revisionInfoClass, PropertyData modifiedEntityNamesData, ServiceRegistry serviceRegistry)
RevisionInfoNumberReader(Class<?> revisionInfoClass, PropertyData revisionInfoIdData, ServiceRegistry serviceRegistry, RevisionInfoGenerator generator)
RevisionTimestampValueResolver(Class<?> revisionInfoClass, RevisionTimestampData timestampData, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.envers.internal.tools
Methods in org.hibernate.envers.internal.tools with parameters of type ServiceRegistry Modifier and Type Method Description static Getter
ReflectionTools. getGetter(Class cls, String propertyName, String accessorType, ServiceRegistry serviceRegistry)
static Getter
ReflectionTools. getGetter(Class cls, PropertyData propertyData, ServiceRegistry serviceRegistry)
static Setter
ReflectionTools. getSetter(Class cls, String propertyName, String accessorType, ServiceRegistry serviceRegistry)
static Setter
ReflectionTools. getSetter(Class cls, PropertyData propertyData, ServiceRegistry serviceRegistry)
static Class<?>
ReflectionTools. getType(Class cls, PropertyData propertyData, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.generator
Methods in org.hibernate.generator that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
GeneratorCreationContext. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.id
Methods in org.hibernate.id that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
ExportableColumn.ValueImpl. getServiceRegistry()
Methods in org.hibernate.id with parameters of type ServiceRegistry Modifier and Type Method Description void
Assigned. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
void
Configurable. configure(Type type, Properties params, ServiceRegistry serviceRegistry)
Configure this instance, given the value of parameters specified by the user as<param>
elements.void
ForeignGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
Deprecated, for removal: This API element is subject to removal in a future version.default void
IdentifierGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
Configure this instance, given the value of parameters specified by the user as<param>
elements.void
IncrementGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
default void
PostInsertIdentifierGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)
Noop default implementation.void
SelectGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
void
UUIDGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
Deprecated.void
UUIDHexGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
Deprecated. -
Uses of ServiceRegistry in org.hibernate.id.enhanced
Methods in org.hibernate.id.enhanced with parameters of type ServiceRegistry Modifier and Type Method Description void
SequenceStyleGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
void
TableGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)
protected QualifiedName
TableGenerator. determineGeneratorTableName(Properties params, JdbcEnvironment jdbcEnvironment, ServiceRegistry serviceRegistry)
Determine the table name to use for the generator values.QualifiedName
ImplicitDatabaseObjectNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
Determine the implicit name for an identifier-generator sequenceQualifiedName
LegacyNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
protected QualifiedName
SequenceStyleGenerator. determineSequenceName(Properties params, Dialect dialect, JdbcEnvironment jdbcEnv, ServiceRegistry serviceRegistry)
Determine the name of the sequence (or table if this resolves to a physical table) to use.QualifiedName
SingleNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
QualifiedName
StandardNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
QualifiedName
ImplicitDatabaseObjectNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
Determine the implicit name for an identifier-generator tableQualifiedName
LegacyNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
QualifiedName
SingleNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
QualifiedName
StandardNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.id.factory.internal
Methods in org.hibernate.id.factory.internal with parameters of type ServiceRegistry Modifier and Type Method Description IdentifierGenerator
AutoGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)
IdentifierGenerator
IdentityGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)
IdentifierGenerator
SequenceGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)
IdentifierGenerator
TableGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)
IdentifierGenerator
UUIDGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.id.factory.internal with parameters of type ServiceRegistry Constructor Description StandardIdentifierGeneratorFactory(ServiceRegistry serviceRegistry)
Constructs a new factoryStandardIdentifierGeneratorFactory(ServiceRegistry serviceRegistry, boolean ignoreBeanContainer)
Constructs a new factory, explicitly controlling whether to use CDI or not -
Uses of ServiceRegistry in org.hibernate.id.factory.spi
Methods in org.hibernate.id.factory.spi with parameters of type ServiceRegistry Modifier and Type Method Description IdentifierGenerator
GenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)
void
GenerationTypeStrategyRegistration. registerStrategies(BiConsumer<GenerationType,GenerationTypeStrategy> registry, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.internal
Methods in org.hibernate.internal that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
JdbcSessionContextImpl. getServiceRegistry()
Deprecated. -
Uses of ServiceRegistry in org.hibernate.jpa.event.internal
Methods in org.hibernate.jpa.event.internal with parameters of type ServiceRegistry Modifier and Type Method Description static CallbackRegistry
CallbacksFactory. buildCallbackRegistry(SessionFactoryOptions options, ServiceRegistry serviceRegistry, Collection<PersistentClass> entityBindings)
-
Uses of ServiceRegistry in org.hibernate.mapping
Methods in org.hibernate.mapping that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
Collection. getServiceRegistry()
ServiceRegistry
OneToMany. getServiceRegistry()
ServiceRegistry
PersistentClass. getServiceRegistry()
ServiceRegistry
SimpleValue. getServiceRegistry()
ServiceRegistry
Value. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.metamodel.model.domain
Methods in org.hibernate.metamodel.model.domain that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
JpaMetamodel. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.metamodel.model.domain.internal
Methods in org.hibernate.metamodel.model.domain.internal that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
JpaMetamodelImpl. getServiceRegistry()
ServiceRegistry
MappingMetamodelImpl. getServiceRegistry()
Constructors in org.hibernate.metamodel.model.domain.internal with parameters of type ServiceRegistry Constructor Description JpaMetamodelImpl(TypeConfiguration typeConfiguration, MappingMetamodel mappingMetamodel, ServiceRegistry serviceRegistry)
MappingMetamodelImpl(TypeConfiguration typeConfiguration, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.metamodel.spi
Methods in org.hibernate.metamodel.spi that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
RuntimeModelCreationContext. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.persister.collection.mutation
-
Uses of ServiceRegistry in org.hibernate.property.access.internal
Constructors in org.hibernate.property.access.internal with parameters of type ServiceRegistry Constructor Description PropertyAccessStrategyResolverStandardImpl(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi that return ServiceRegistry Modifier and Type Method Description default ServiceRegistry
SqmCreationContext. getServiceRegistry()
Access to the ServiceRegistry for the context -
Uses of ServiceRegistry in org.hibernate.resource.beans.container.internal
Methods in org.hibernate.resource.beans.container.internal with parameters of type ServiceRegistry Modifier and Type Method Description static BeanContainer
CdiBeanContainerBuilder. fromBeanManagerReference(Object beanManagerRef, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.resource.beans.internal
Methods in org.hibernate.resource.beans.internal with parameters of type ServiceRegistry Modifier and Type Method Description static boolean
Helper. allowExtensionsInCdi(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.resource.jdbc.spi
Methods in org.hibernate.resource.jdbc.spi that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
JdbcSessionContext. getServiceRegistry()
Deprecated.this is no longer called, and unnecessary, since the needed services are now available viaJdbcSessionContext.getJdbcServices()
-
Uses of ServiceRegistry in org.hibernate.service
Methods in org.hibernate.service that return ServiceRegistry Modifier and Type Method Description @Nullable ServiceRegistry
ServiceRegistry. getParentServiceRegistry()
Retrieve this registry's parent registry. -
Uses of ServiceRegistry in org.hibernate.service.internal
Classes in org.hibernate.service.internal that implement ServiceRegistry Modifier and Type Class Description class
AbstractServiceRegistryImpl
Basic implementation of theServiceRegistry
andServiceRegistryImplementor
contracts.class
SessionFactoryServiceRegistryImpl
Methods in org.hibernate.service.internal that return ServiceRegistry Modifier and Type Method Description @Nullable ServiceRegistry
AbstractServiceRegistryImpl. getParentServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.service.spi
Subinterfaces of ServiceRegistry in org.hibernate.service.spi Modifier and Type Interface Description interface
ServiceRegistryImplementor
Additional integration contracts for a service registry.interface
SessionFactoryServiceRegistry
SpecializedServiceRegistry
implementation that holds services which need access to theSessionFactory
during initialization. -
Uses of ServiceRegistry in org.hibernate.spatial.contributor
Methods in org.hibernate.spatial.contributor that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
ContributorImplementor. getServiceRegistry()
Methods in org.hibernate.spatial.contributor with parameters of type ServiceRegistry Modifier and Type Method Description void
SpatialTypeContributor. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
default void
ContributorImplementor. contributeJavaTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
void
ContributorImplementor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.cockroachdb
Methods in org.hibernate.spatial.dialect.cockroachdb that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
CockroachDbContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.cockroachdb with parameters of type ServiceRegistry Modifier and Type Method Description void
CockroachDbContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.cockroachdb with parameters of type ServiceRegistry Constructor Description CockroachDbContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.h2gis
Methods in org.hibernate.spatial.dialect.h2gis that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
H2GisDialectContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.h2gis with parameters of type ServiceRegistry Modifier and Type Method Description void
H2GisDialectContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.h2gis with parameters of type ServiceRegistry Constructor Description H2GisDialectContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.mariadb
Methods in org.hibernate.spatial.dialect.mariadb that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
MariaDBDialectContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.mariadb with parameters of type ServiceRegistry Modifier and Type Method Description void
MariaDBDialectContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.mariadb with parameters of type ServiceRegistry Constructor Description MariaDBDialectContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.mysql
Methods in org.hibernate.spatial.dialect.mysql that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
MySQLDialectContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.mysql with parameters of type ServiceRegistry Modifier and Type Method Description void
MySQLDialectContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.mysql with parameters of type ServiceRegistry Constructor Description MySQLDialectContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.oracle
Methods in org.hibernate.spatial.dialect.oracle that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
OracleDialectContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.oracle with parameters of type ServiceRegistry Modifier and Type Method Description void
OracleDialectContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.oracle with parameters of type ServiceRegistry Constructor Description OracleDialectContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.postgis
Methods in org.hibernate.spatial.dialect.postgis that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
PostgisDialectContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.postgis with parameters of type ServiceRegistry Modifier and Type Method Description void
PostgisDialectContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.postgis with parameters of type ServiceRegistry Constructor Description PostgisDialectContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.spatial.dialect.sqlserver
Methods in org.hibernate.spatial.dialect.sqlserver that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
SqlServerDialectContributor. getServiceRegistry()
Methods in org.hibernate.spatial.dialect.sqlserver with parameters of type ServiceRegistry Modifier and Type Method Description void
SqlServerDialectContributor. contributeJdbcTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)
Constructors in org.hibernate.spatial.dialect.sqlserver with parameters of type ServiceRegistry Constructor Description SqlServerDialectContributor(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
SqlAstCreationContext. getServiceRegistry()
Access to Services -
Uses of ServiceRegistry in org.hibernate.testing
Methods in org.hibernate.testing with parameters of type ServiceRegistry Modifier and Type Method Description static void
ServiceRegistryBuilder. destroy(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.testing.boot
Classes in org.hibernate.testing.boot that implement ServiceRegistry Modifier and Type Class Description class
ServiceRegistryTestingImpl
ServiceRegistry useful in testingConstructors in org.hibernate.testing.boot with parameters of type ServiceRegistry Constructor Description JdbcConnectionAccessImpl(ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.testing.schema
Methods in org.hibernate.testing.schema with parameters of type ServiceRegistry Modifier and Type Method Description static void
SchemaCreateHelper. create(Metadata metadata, ServiceRegistry serviceRegistry)
static void
SchemaCreateHelper. createOnly(Metadata metadata, ServiceRegistry serviceRegistry)
static void
SchemaDropHelper. drop(Metadata metadata, ServiceRegistry serviceRegistry)
static void
SchemaUpdateHelper. update(Metadata metadata, ServiceRegistry serviceRegistry)
static void
SchemaValidateHelper. validate(Metadata metadata, ServiceRegistry serviceRegistry)
-
Uses of ServiceRegistry in org.hibernate.testing.transaction
Methods in org.hibernate.testing.transaction with parameters of type ServiceRegistry Modifier and Type Method Description static <T> T
TransactionUtil. doWithJDBC(ServiceRegistry serviceRegistry, TransactionUtil.JDBCTransactionFunction<T> function)
static void
TransactionUtil. doWithJDBC(ServiceRegistry serviceRegistry, TransactionUtil.JDBCTransactionVoidFunction function)
-
Uses of ServiceRegistry in org.hibernate.tool.schema.extract.internal
Methods in org.hibernate.tool.schema.extract.internal that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
ExtractionContextImpl. getServiceRegistry()
Constructors in org.hibernate.tool.schema.extract.internal with parameters of type ServiceRegistry Constructor Description DatabaseInformationImpl(ServiceRegistry serviceRegistry, JdbcEnvironment jdbcEnvironment, SqlStringGenerationContext context, DdlTransactionIsolator ddlTransactionIsolator, SchemaManagementTool tool)
ExtractionContextImpl(ServiceRegistry serviceRegistry, JdbcEnvironment jdbcEnvironment, SqlStringGenerationContext context, JdbcConnectionAccess jdbcConnectionAccess, ExtractionContext.DatabaseObjectAccess registeredTableAccess)
-
Uses of ServiceRegistry in org.hibernate.tool.schema.extract.spi
Methods in org.hibernate.tool.schema.extract.spi that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
ExtractionContext.EmptyExtractionContext. getServiceRegistry()
ServiceRegistry
ExtractionContext. getServiceRegistry()
-
Uses of ServiceRegistry in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
HibernateSchemaManagementTool. getServiceRegistry()
ServiceRegistry
HibernateSchemaManagementTool.JdbcContextImpl. getServiceRegistry()
Methods in org.hibernate.tool.schema.internal with parameters of type ServiceRegistry Modifier and Type Method Description static DatabaseInformation
Helper. buildDatabaseInformation(ServiceRegistry serviceRegistry, DdlTransactionIsolator ddlTransactionIsolator, SqlStringGenerationContext context, SchemaManagementTool tool)
void
SchemaCreatorImpl. doCreation(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> settings, boolean manageNamespaces, GenerationTarget... targets)
Intended for use from testsvoid
SchemaDropperImpl. doDrop(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> settings, boolean manageNamespaces, GenerationTarget... targets)
For testsConstructors in org.hibernate.tool.schema.internal with parameters of type ServiceRegistry Constructor Description SchemaCreatorImpl(ServiceRegistry serviceRegistry)
SchemaCreatorImpl(ServiceRegistry serviceRegistry, SchemaFilter schemaFilter)
SchemaDropperImpl(ServiceRegistry serviceRegistry)
SchemaDropperImpl(ServiceRegistry serviceRegistry, SchemaFilter schemaFilter)
-
Uses of ServiceRegistry in org.hibernate.tool.schema.internal.exec
Methods in org.hibernate.tool.schema.internal.exec that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
ImprovedExtractionContextImpl. getServiceRegistry()
ServiceRegistry
JdbcContext. getServiceRegistry()
Constructors in org.hibernate.tool.schema.internal.exec with parameters of type ServiceRegistry Constructor Description ImprovedExtractionContextImpl(ServiceRegistry serviceRegistry, JdbcEnvironment jdbcEnvironment, SqlStringGenerationContext context, DdlTransactionIsolator ddlTransactionIsolator, ExtractionContext.DatabaseObjectAccess databaseObjectAccess)
-
Uses of ServiceRegistry in org.hibernate.tool.schema.spi
Methods in org.hibernate.tool.schema.spi with parameters of type ServiceRegistry Modifier and Type Method Description ExtractionContext
ExtractionTool. createExtractionContext(ServiceRegistry serviceRegistry, JdbcEnvironment jdbcEnvironment, SqlStringGenerationContext context, DdlTransactionIsolator ddlTransactionIsolator, ExtractionContext.DatabaseObjectAccess databaseObjectAccess)
void
DelayedDropAction. perform(ServiceRegistry serviceRegistry)
Perform the delayed schema drop.static void
SchemaManagementToolCoordinator. process(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> configurationValues, DelayedDropRegistry delayedDropRegistry)
-
Uses of ServiceRegistry in org.hibernate.type.spi
Methods in org.hibernate.type.spi that return ServiceRegistry Modifier and Type Method Description ServiceRegistry
TypeConfiguration. getServiceRegistry()
Deprecated.This simply isn't a very sensible place to hang theServiceRegistry
-