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 eitherIdentifierGeneratororPostInsertIdentifierGenerator.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.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).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 SpatialDialects 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.orm.junit org.hibernate.testing.schema org.hibernate.testing.transaction org.hibernate.testing.util.uuid 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 HibernateTypes. -
-
Uses of ServiceRegistry in org.hibernate.boot
Methods in org.hibernate.boot that return ServiceRegistry Modifier and Type Method Description ServiceRegistryMetadataSources. getServiceRegistry()Methods in org.hibernate.boot with parameters of type ServiceRegistry Modifier and Type Method Description protected static booleanMetadataSources. 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 ServiceRegistryFunctionContributions. getServiceRegistry()Access to services.Methods in org.hibernate.boot.model with parameters of type ServiceRegistry Modifier and Type Method Description voidTypeContributor. 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 ServiceRegistryDatabase. getServiceRegistry() -
Uses of ServiceRegistry in org.hibernate.boot.registry
Subinterfaces of ServiceRegistry in org.hibernate.boot.registry Modifier and Type Interface Description interfaceBootstrapServiceRegistryProvides the most basic services such as class loading.interfaceStandardServiceRegistrySpecialization of theServiceRegistrycontract mainly for type safety.Methods in org.hibernate.boot.registry with parameters of type ServiceRegistry Modifier and Type Method Description static voidBootstrapServiceRegistryBuilder. destroy(ServiceRegistry serviceRegistry)Destroy a service registry.static voidStandardServiceRegistryBuilder. 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 classBootstrapServiceRegistryImplServiceRegistryimplementation containing specialized "bootstrap" services, specifically:ClassLoaderServiceIntegratorServiceStrategySelectorclassStandardServiceRegistryImplStandard Hibernate implementation of the standard service registry.Methods in org.hibernate.boot.registry.internal that return ServiceRegistry Modifier and Type Method Description @Nullable ServiceRegistryBootstrapServiceRegistryImpl. 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 booleanMetadataBuildingContext. isPreferJavaTimeJdbcTypesEnabled(ServiceRegistry serviceRegistry)static booleanMetadataBuildingContext. 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 SessionFactoryConfiguration. buildSessionFactory(ServiceRegistry serviceRegistry)Create aSessionFactoryusing 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 voidAbstractHANADialect. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)Deprecated, for removal: This API element is subject to removal in a future version.voidDialect. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidDialectDelegateWrapper. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidCockroachDialect. contributeCockroachTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidPostgreSQLDialect. contributePostgreSQLTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)Allow for extension points to override this onlyvoidAbstractHANADialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)Deprecated, for removal: This API element is subject to removal in a future version.voidCockroachDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidDB2Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidDerbyDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)A callback which allows theDialectto contribute types.voidDialectDelegateWrapper. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidH2Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidMariaDBDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidMySQLDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidOracleDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidPostgreSQLDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidSQLServerDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidSybaseASEDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidSybaseDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)static JdbcTypePgJdbcHelper. createJdbcType(ServiceRegistry serviceRegistry, String className)static JdbcTypeConstructorOracleJdbcHelper. getArrayJdbcTypeConstructor(ServiceRegistry serviceRegistry)static JdbcTypePgJdbcHelper. getInetJdbcType(ServiceRegistry serviceRegistry)static JdbcTypePgJdbcHelper. getIntervalJdbcType(ServiceRegistry serviceRegistry)static JdbcTypePgJdbcHelper. getJsonbJdbcType(ServiceRegistry serviceRegistry)static JdbcTypePgJdbcHelper. getJsonJdbcType(ServiceRegistry serviceRegistry)static JdbcTypeConstructorOracleJdbcHelper. getNestedTableJdbcTypeConstructor(ServiceRegistry serviceRegistry)static JdbcTypeOracleJdbcHelper. getStructJdbcType(ServiceRegistry serviceRegistry)static JdbcTypePgJdbcHelper. getStructJdbcType(ServiceRegistry serviceRegistry)static booleanOracleJdbcHelper. isUsable(ServiceRegistry serviceRegistry)static booleanPgJdbcHelper. isUsable(ServiceRegistry serviceRegistry)protected voidAbstractHANADialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)Deprecated, for removal: This API element is subject to removal in a future version.protected voidCockroachDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidDB2Dialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidDerbyDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)Register ANSI-standard column types using the length limits defined byDialect.getMaxVarcharLength(),Dialect.getMaxNVarcharLength(), andDialect.getMaxVarbinaryLength().voidDialectDelegateWrapper. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidH2Dialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidMariaDBDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidMySQLDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidOracleDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidPostgreSQLDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidSQLServerDialect. registerColumnTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)protected voidSybaseASEDialect. 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 booleanJdbcEnvironmentImpl. 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 ServiceRegistryAbstractJtaPlatform. 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 ServiceRegistryEnversMetadataBuildingContextImpl. getServiceRegistry()ServiceRegistryEnversService. getServiceRegistry()ServiceRegistryEnversServiceImpl. getServiceRegistry()Methods in org.hibernate.envers.boot.internal with parameters of type ServiceRegistry Modifier and Type Method Description voidTypeContributorImpl. 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 ServiceRegistryEnversMetadataBuildingContext. 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 voidAbstractMapper. 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> TAbstractMapper. getValueFromObject(String propertyName, String accessType, Object object, ServiceRegistry serviceRegistry)Get a value from the specified object.protected <T> TAbstractMapper. getValueFromObject(PropertyData propertyData, Object object, ServiceRegistry serviceRegistry)Get a value from the specified object.protected voidAbstractMapper. 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 ServiceRegistryAbstractIdMapper. getServiceRegistry()ServiceRegistryIdMapper. 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 GetterReflectionTools. getGetter(Class cls, String propertyName, String accessorType, ServiceRegistry serviceRegistry)static GetterReflectionTools. getGetter(Class cls, PropertyData propertyData, ServiceRegistry serviceRegistry)static SetterReflectionTools. getSetter(Class cls, String propertyName, String accessorType, ServiceRegistry serviceRegistry)static SetterReflectionTools. 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 ServiceRegistryGeneratorCreationContext. getServiceRegistry()Access to available services. -
Uses of ServiceRegistry in org.hibernate.id
Methods in org.hibernate.id that return ServiceRegistry Modifier and Type Method Description ServiceRegistryExportableColumn.ValueImpl. getServiceRegistry()Methods in org.hibernate.id with parameters of type ServiceRegistry Modifier and Type Method Description voidAssigned. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)voidConfigurable. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)Configure this instance, given the value of parameters specified by the user as XML<param>elements and@Parameterannotations.voidForeignGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)Deprecated, for removal: This API element is subject to removal in a future version.default voidIdentifierGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)Configure this instance, given the value of parameters specified by the user as<param>elements.voidIncrementGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)default voidPostInsertIdentifierGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)Noop default implementation.voidSelectGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)voidUUIDGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)Deprecated.voidUUIDHexGenerator. 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 voidSequenceStyleGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)voidTableGenerator. configure(Type type, Properties parameters, ServiceRegistry serviceRegistry)protected QualifiedNameTableGenerator. determineGeneratorTableName(Properties params, JdbcEnvironment jdbcEnvironment, ServiceRegistry serviceRegistry)Determine the table name to use for the generator values.QualifiedNameImplicitDatabaseObjectNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)Determine the implicit name for an identifier-generator sequenceQualifiedNameLegacyNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)protected QualifiedNameSequenceStyleGenerator. 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.QualifiedNameSingleNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)QualifiedNameStandardNamingStrategy. determineSequenceName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)QualifiedNameImplicitDatabaseObjectNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)Determine the implicit name for an identifier-generator tableQualifiedNameLegacyNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)QualifiedNameSingleNamingStrategy. determineTableName(Identifier catalogName, Identifier schemaName, Map<?,?> configValues, ServiceRegistry serviceRegistry)QualifiedNameStandardNamingStrategy. 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 IdentifierGeneratorAutoGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)IdentifierGeneratorIdentityGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)IdentifierGeneratorSequenceGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)IdentifierGeneratorTableGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)IdentifierGeneratorUUIDGenerationTypeStrategy. 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 IdentifierGeneratorGenerationTypeStrategy. createIdentifierGenerator(GenerationType generationType, String generatorName, JavaType<?> javaType, Properties config, GeneratorDefinitionResolver definitionResolver, ServiceRegistry serviceRegistry)voidGenerationTypeStrategyRegistration. 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 ServiceRegistryJdbcSessionContextImpl. 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 CallbackRegistryCallbacksFactory. 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 ServiceRegistryCollection. getServiceRegistry()ServiceRegistryOneToMany. getServiceRegistry()ServiceRegistryPersistentClass. getServiceRegistry()ServiceRegistrySimpleValue. getServiceRegistry()ServiceRegistryValue. getServiceRegistry() -
Uses of ServiceRegistry in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping with parameters of type ServiceRegistry Modifier and Type Method Description static <O,R>
EmbeddableDiscriminatorConverter<O,R>EmbeddableDiscriminatorConverter. fromValueMappings(String discriminatedType, JavaType<O> domainJavaType, BasicType<R> underlyingJdbcMapping, Map<Object,String> valueMappings, ServiceRegistry serviceRegistry) -
Uses of ServiceRegistry in org.hibernate.metamodel.model.domain
Methods in org.hibernate.metamodel.model.domain that return ServiceRegistry Modifier and Type Method Description ServiceRegistryJpaMetamodel. 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 ServiceRegistryJpaMetamodelImpl. getServiceRegistry()ServiceRegistryMappingMetamodelImpl. 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 ServiceRegistryRuntimeModelCreationContext. 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 ServiceRegistrySqmCreationContext. 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 BeanContainerCdiBeanContainerBuilder. 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 booleanHelper. 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 ServiceRegistryJdbcSessionContext. 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 ServiceRegistryServiceRegistry. 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 classAbstractServiceRegistryImplBasic implementation of theServiceRegistryandServiceRegistryImplementorcontracts.classSessionFactoryServiceRegistryImplMethods in org.hibernate.service.internal that return ServiceRegistry Modifier and Type Method Description @Nullable ServiceRegistryAbstractServiceRegistryImpl. getParentServiceRegistry() -
Uses of ServiceRegistry in org.hibernate.service.spi
Subinterfaces of ServiceRegistry in org.hibernate.service.spi Modifier and Type Interface Description interfaceServiceRegistryImplementorAdditional integration contracts for a service registry.interfaceSessionFactoryServiceRegistrySpecializedServiceRegistryimplementation that holds services which need access to theSessionFactoryduring initialization. -
Uses of ServiceRegistry in org.hibernate.spatial.contributor
Methods in org.hibernate.spatial.contributor that return ServiceRegistry Modifier and Type Method Description ServiceRegistryContributorImplementor. getServiceRegistry()Methods in org.hibernate.spatial.contributor with parameters of type ServiceRegistry Modifier and Type Method Description voidSpatialTypeContributor. contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry)default voidContributorImplementor. contributeJavaTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidContributorImplementor. 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 ServiceRegistryCockroachDbContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.cockroachdb with parameters of type ServiceRegistry Modifier and Type Method Description voidCockroachDbContributor. 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 ServiceRegistryH2GisDialectContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.h2gis with parameters of type ServiceRegistry Modifier and Type Method Description voidH2GisDialectContributor. 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 ServiceRegistryMariaDBDialectContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.mariadb with parameters of type ServiceRegistry Modifier and Type Method Description voidMariaDBDialectContributor. 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 ServiceRegistryMySQLDialectContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.mysql with parameters of type ServiceRegistry Modifier and Type Method Description voidMySQLDialectContributor. 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 ServiceRegistryOracleDialectContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.oracle with parameters of type ServiceRegistry Modifier and Type Method Description voidOracleDialectContributor. 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 ServiceRegistryPostgisDialectContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.postgis with parameters of type ServiceRegistry Modifier and Type Method Description voidPostgisDialectContributor. 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 ServiceRegistrySqlServerDialectContributor. getServiceRegistry()Methods in org.hibernate.spatial.dialect.sqlserver with parameters of type ServiceRegistry Modifier and Type Method Description voidSqlServerDialectContributor. 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 ServiceRegistrySqlAstCreationContext. 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 voidServiceRegistryBuilder. 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 classServiceRegistryTestingImplServiceRegistry 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.orm.junit
Methods in org.hibernate.testing.orm.junit that return ServiceRegistry Modifier and Type Method Description ServiceRegistryDialectFeatureChecks.FakeFunctionContributions. getServiceRegistry() -
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 voidSchemaCreateHelper. create(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaCreateHelper. createOnly(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaDropHelper. drop(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaUpdateHelper. update(Metadata metadata, ServiceRegistry serviceRegistry)static voidSchemaValidateHelper. 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> TTransactionUtil. doWithJDBC(ServiceRegistry serviceRegistry, TransactionUtil.JDBCTransactionFunction<T> function)static voidTransactionUtil. doWithJDBC(ServiceRegistry serviceRegistry, TransactionUtil.JDBCTransactionVoidFunction function) -
Uses of ServiceRegistry in org.hibernate.testing.util.uuid
Methods in org.hibernate.testing.util.uuid that return ServiceRegistry Modifier and Type Method Description ServiceRegistryIdGeneratorCreationContext. getServiceRegistry()Constructors in org.hibernate.testing.util.uuid with parameters of type ServiceRegistry Constructor Description IdGeneratorCreationContext(ServiceRegistry serviceRegistry, MetadataImplementor domainModel, RootClass entityMapping) -
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 ServiceRegistryExtractionContextImpl. 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 ServiceRegistryExtractionContext.EmptyExtractionContext. getServiceRegistry()ServiceRegistryExtractionContext. 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 ServiceRegistryHibernateSchemaManagementTool. getServiceRegistry()ServiceRegistryHibernateSchemaManagementTool.JdbcContextImpl. getServiceRegistry()Methods in org.hibernate.tool.schema.internal with parameters of type ServiceRegistry Modifier and Type Method Description static DatabaseInformationHelper. buildDatabaseInformation(ServiceRegistry serviceRegistry, DdlTransactionIsolator ddlTransactionIsolator, SqlStringGenerationContext context, SchemaManagementTool tool)voidSchemaCreatorImpl. doCreation(Metadata metadata, ServiceRegistry serviceRegistry, Map<String,Object> settings, boolean manageNamespaces, GenerationTarget... targets)Intended for use from testsvoidSchemaDropperImpl. 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 ServiceRegistryImprovedExtractionContextImpl. getServiceRegistry()ServiceRegistryJdbcContext. 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 ExtractionContextExtractionTool. createExtractionContext(ServiceRegistry serviceRegistry, JdbcEnvironment jdbcEnvironment, SqlStringGenerationContext context, DdlTransactionIsolator ddlTransactionIsolator, ExtractionContext.DatabaseObjectAccess databaseObjectAccess)voidDelayedDropAction. perform(ServiceRegistry serviceRegistry)Perform the delayed schema drop.static voidSchemaManagementToolCoordinator. 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 ServiceRegistryTypeConfiguration. getServiceRegistry()Deprecated.This simply isn't a very sensible place to hang theServiceRegistry
-