Uses of Interface
org.hibernate.service.ServiceRegistry
-
Packages that use ServiceRegistry Package Description org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.model org.hibernate.boot.model.relational org.hibernate.boot.registry Defines service registry contracts application are likely to want to utilize for configuring Hibernate behavior.org.hibernate.boot.spi org.hibernate.cfg org.hibernate.dialect org.hibernate.engine.jdbc Support for various aspects of JDBC interactionorg.hibernate.hql.spi.id Support for multi-table update and delete statements via id-tables.org.hibernate.id org.hibernate.id.enhanced Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configurationorg.hibernate.mapping org.hibernate.resource.jdbc.spi org.hibernate.service org.hibernate.service.spi org.hibernate.tool.hbm2ddl org.hibernate.tool.schema.extract.spi org.hibernate.tool.schema.spi org.hibernate.type.spi -
-
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 metadata sources using the specified service registry.MetadataSources(ServiceRegistry serviceRegistry, boolean disableXmlMappingBinders)Consider this an SPI, used by Quarkus -
Uses of ServiceRegistry in org.hibernate.boot.model
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 needed.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.spi
Constructors in org.hibernate.boot.spi with parameters of type ServiceRegistry Constructor Description XmlMappingBinderAccess(ServiceRegistry serviceRegistry) -
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. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidCockroachDB192Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)Allows the Dialect to contribute additional typesvoidOracle12cDialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry)voidPostgreSQL82Dialect. contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry) -
Uses of ServiceRegistry in org.hibernate.engine.jdbc
Methods in org.hibernate.engine.jdbc with parameters of type ServiceRegistry Modifier and Type Method Description static ResultSetResultSetWrapperProxy. generateProxy(ResultSet resultSet, ColumnNameCache columnNameCache, ServiceRegistry serviceRegistry)Deprecated.Generates a proxy wrapping the ResultSet. -
Uses of ServiceRegistry in org.hibernate.hql.spi.id
Methods in org.hibernate.hql.spi.id with parameters of type ServiceRegistry Modifier and Type Method Description voidIdTableHelper. executeIdTableCreationStatements(List<String> creationStatements, JdbcServices jdbcServices, JdbcConnectionAccess connectionAccess, ServiceRegistry serviceRegistry)voidIdTableHelper. executeIdTableDropStatements(String[] dropStatements, JdbcServices jdbcServices, JdbcConnectionAccess connectionAccess, ServiceRegistry serviceRegistry)DdlTransactionIsolatorIdTableHelper. getDdlTransactionIsolator(JdbcServices jdbcServices, JdbcConnectionAccess connectionAccess, ServiceRegistry serviceRegistry) -
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 params, ServiceRegistry serviceRegistry)voidConfigurable. configure(Type type, Properties params, ServiceRegistry serviceRegistry)Deprecated.Configure this instance, given the value of parameters specified by the user as <param> elements.voidForeignGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)default voidIdentifierGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)Configure this instance, given the value of parameters specified by the user as <param> elements.voidIncrementGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)voidMultipleHiLoPerTableGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)Deprecated.voidSelectGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)voidSequenceGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)Deprecated.voidSequenceHiLoGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)Deprecated.voidSequenceIdentityGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)Deprecated.voidUUIDGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)voidUUIDHexGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry) -
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 params, ServiceRegistry serviceRegistry)voidTableGenerator. configure(Type type, Properties params, ServiceRegistry serviceRegistry)protected QualifiedNameTableGenerator. determineGeneratorTableName(Properties params, JdbcEnvironment jdbcEnvironment, ServiceRegistry serviceRegistry)Determine the table name to use for the generator values.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. -
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()protected ServiceRegistryProperty. resolveServiceRegistry() -
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() -
Uses of ServiceRegistry in org.hibernate.service
Methods in org.hibernate.service that return ServiceRegistry Modifier and Type Method Description ServiceRegistryServiceRegistry. getParentServiceRegistry()Retrieve this registry's parent registry. -
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.tool.hbm2ddl
Methods in org.hibernate.tool.hbm2ddl with parameters of type ServiceRegistry Modifier and Type Method Description static TargetDescriptorSchemaExport. buildTargetDescriptor(EnumSet<TargetType> targetTypes, String outputFile, boolean append, ServiceRegistry serviceRegistry)static TargetDescriptorSchemaExport. buildTargetDescriptor(EnumSet<TargetType> targetTypes, String outputFile, ServiceRegistry serviceRegistry)voidSchemaExport. doExecution(SchemaExport.Action action, boolean needsJdbc, Metadata metadata, ServiceRegistry serviceRegistry, TargetDescriptor targetDescriptor)voidSchemaExport. execute(EnumSet<TargetType> targetTypes, SchemaExport.Action action, Metadata metadata, ServiceRegistry serviceRegistry)voidSchemaUpdate. execute(EnumSet<TargetType> targetTypes, Metadata metadata, ServiceRegistry serviceRegistry)voidSchemaValidator. validate(Metadata metadata, ServiceRegistry serviceRegistry) -
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.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 sqlStringGenerationContext, DdlTransactionIsolator ddlTransactionIsolator, ExtractionContext.DatabaseObjectAccess databaseObjectAccess)voidDelayedDropAction. perform(ServiceRegistry serviceRegistry)Perform the delayed schema drop.static voidSchemaManagementToolCoordinator. process(Metadata metadata, ServiceRegistry serviceRegistry, Map 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()Obtain the ServiceRegistry scoped to the TypeConfiguration.
-