Uses of Interface
org.hibernate.service.spi.ServiceRegistryImplementor

Packages that use ServiceRegistryImplementor
org.hibernate.cache.internal   
org.hibernate.engine.jdbc.batch.internal   
org.hibernate.engine.jdbc.internal   
org.hibernate.engine.spi   
org.hibernate.engine.transaction.internal   
org.hibernate.event.service.internal   
org.hibernate.id.factory.internal   
org.hibernate.internal An internal package containing mostly implementations of central Hibernate APIs of the org.hibernate package. 
org.hibernate.persister.internal   
org.hibernate.service.config.internal   
org.hibernate.service.instrumentation.internal   
org.hibernate.service.internal   
org.hibernate.service.jdbc.connections.internal   
org.hibernate.service.jdbc.dialect.internal   
org.hibernate.service.jmx.internal   
org.hibernate.service.jndi.internal   
org.hibernate.service.jta.platform.internal   
org.hibernate.service.spi   
org.hibernate.stat.internal   
org.hibernate.tool.hbm2ddl The hbm2ddl tool. 
 

Uses of ServiceRegistryImplementor in org.hibernate.cache.internal
 

Methods in org.hibernate.cache.internal with parameters of type ServiceRegistryImplementor
 RegionFactory RegionFactoryInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.engine.jdbc.batch.internal
 

Methods in org.hibernate.engine.jdbc.batch.internal with parameters of type ServiceRegistryImplementor
 BatchBuilder BatchBuilderInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.engine.jdbc.internal
 

Methods in org.hibernate.engine.jdbc.internal with parameters of type ServiceRegistryImplementor
 JdbcServices JdbcServicesInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 void JdbcServicesImpl.injectServices(ServiceRegistryImplementor serviceRegistry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.engine.spi
 

Methods in org.hibernate.engine.spi that return ServiceRegistryImplementor
 ServiceRegistryImplementor SessionFactoryImplementor.getServiceRegistry()
           
 

Uses of ServiceRegistryImplementor in org.hibernate.engine.transaction.internal
 

Methods in org.hibernate.engine.transaction.internal with parameters of type ServiceRegistryImplementor
 TransactionFactory TransactionFactoryInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.event.service.internal
 

Methods in org.hibernate.event.service.internal with parameters of type ServiceRegistryImplementor
 EventListenerRegistry EventListenerServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory, Configuration configuration, ServiceRegistryImplementor registry)
           
 EventListenerRegistry EventListenerServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory, MetadataImplementor metadata, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.id.factory.internal
 

Methods in org.hibernate.id.factory.internal with parameters of type ServiceRegistryImplementor
 MutableIdentifierGeneratorFactory MutableIdentifierGeneratorFactoryInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 void DefaultIdentifierGeneratorFactory.injectServices(ServiceRegistryImplementor serviceRegistry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.internal
 

Methods in org.hibernate.internal that return ServiceRegistryImplementor
 ServiceRegistryImplementor SessionFactoryImpl.getServiceRegistry()
           
 

Uses of ServiceRegistryImplementor in org.hibernate.persister.internal
 

Methods in org.hibernate.persister.internal with parameters of type ServiceRegistryImplementor
 PersisterFactory PersisterFactoryInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 PersisterClassResolver PersisterClassResolverInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 void PersisterFactoryImpl.injectServices(ServiceRegistryImplementor serviceRegistry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.config.internal
 

Methods in org.hibernate.service.config.internal with parameters of type ServiceRegistryImplementor
 ConfigurationService ConfigurationServiceInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.instrumentation.internal
 

Methods in org.hibernate.service.instrumentation.internal with parameters of type ServiceRegistryImplementor
 InstrumentationService InstrumentationServiceInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.internal
 

Classes in org.hibernate.service.internal that implement ServiceRegistryImplementor
 class AbstractServiceRegistryImpl
           
 class BootstrapServiceRegistryImpl
          ServiceRegistry implementation containing specialized "bootstrap" services, specifically: ClassLoaderService IntegratorService
 class SessionFactoryServiceRegistryImpl
           
 class StandardServiceRegistryImpl
          Hibernate implementation of the standard service registry.
 

Methods in org.hibernate.service.internal with parameters of type ServiceRegistryImplementor
 SessionFactoryServiceRegistryFactoryImpl SessionFactoryServiceRegistryFactoryInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Constructors in org.hibernate.service.internal with parameters of type ServiceRegistryImplementor
AbstractServiceRegistryImpl(ServiceRegistryImplementor parent)
           
SessionFactoryServiceRegistryFactoryImpl(ServiceRegistryImplementor theBasicServiceRegistry)
           
SessionFactoryServiceRegistryImpl(ServiceRegistryImplementor parent, SessionFactoryImplementor sessionFactory, Configuration configuration)
           
SessionFactoryServiceRegistryImpl(ServiceRegistryImplementor parent, SessionFactoryImplementor sessionFactory, MetadataImplementor metadata)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.jdbc.connections.internal
 

Methods in org.hibernate.service.jdbc.connections.internal with parameters of type ServiceRegistryImplementor
 ConnectionProvider ConnectionProviderInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 MultiTenantConnectionProvider MultiTenantConnectionProviderInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.jdbc.dialect.internal
 

Methods in org.hibernate.service.jdbc.dialect.internal with parameters of type ServiceRegistryImplementor
 DialectResolver DialectResolverInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 DialectFactory DialectFactoryInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.jmx.internal
 

Methods in org.hibernate.service.jmx.internal with parameters of type ServiceRegistryImplementor
 JmxService JmxServiceInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.jndi.internal
 

Methods in org.hibernate.service.jndi.internal with parameters of type ServiceRegistryImplementor
 JndiService JndiServiceInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.jta.platform.internal
 

Methods in org.hibernate.service.jta.platform.internal with parameters of type ServiceRegistryImplementor
 JtaPlatform JtaPlatformInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 void AbstractJtaPlatform.injectServices(ServiceRegistryImplementor serviceRegistry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.service.spi
 

Subinterfaces of ServiceRegistryImplementor in org.hibernate.service.spi
 interface SessionFactoryServiceRegistry
          Specialized ServiceRegistry implementation that holds services which need access to the SessionFactory during initialization.
 

Methods in org.hibernate.service.spi with parameters of type ServiceRegistryImplementor
 R BasicServiceInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
          Initiates the managed service.
 R SessionFactoryServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory, Configuration configuration, ServiceRegistryImplementor registry)
          Initiates the managed service.
 R SessionFactoryServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory, MetadataImplementor metadata, ServiceRegistryImplementor registry)
          Initiates the managed service.
 void ServiceRegistryAwareService.injectServices(ServiceRegistryImplementor serviceRegistry)
          Callback to inject the registry.
 

Uses of ServiceRegistryImplementor in org.hibernate.stat.internal
 

Methods in org.hibernate.stat.internal with parameters of type ServiceRegistryImplementor
 StatisticsImplementor StatisticsInitiator.initiateService(SessionFactoryImplementor sessionFactory, Configuration configuration, ServiceRegistryImplementor registry)
           
 StatisticsImplementor StatisticsInitiator.initiateService(SessionFactoryImplementor sessionFactory, MetadataImplementor metadata, ServiceRegistryImplementor registry)
           
 

Uses of ServiceRegistryImplementor in org.hibernate.tool.hbm2ddl
 

Methods in org.hibernate.tool.hbm2ddl with parameters of type ServiceRegistryImplementor
 ImportSqlCommandExtractor ImportSqlCommandExtractorInitiator.initiateService(Map configurationValues, ServiceRegistryImplementor registry)
           
 



Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.