| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Configuration in org.hibernate.cfg | 
|---|
| Subclasses of Configuration in org.hibernate.cfg | |
|---|---|
|  class | AnnotationConfigurationDeprecated. All functionality has been moved to Configuration | 
| Methods in org.hibernate.cfg that return Configuration | |
|---|---|
|  Configuration | Configuration.addAnnotatedClass(Class annotatedClass)Read metadata from the annotations associated with this class. | 
|  Configuration | Configuration.addCacheableFile(File xmlFile)Add a cached mapping file. | 
|  Configuration | Configuration.addCacheableFile(String xmlFile)Add a cacheable mapping file. | 
|  Configuration | Configuration.addCacheableFileStrictly(File xmlFile)INTENDED FOR TESTSUITE USE ONLY! Much like addCacheableFile(File)except that here we will fail immediately if
 the cache version cannot be found or used for whatever reason | 
|  Configuration | Configuration.addClass(Class persistentClass)Read a mapping as an application resource using the convention that a class named foo.bar.Foo is mapped by a file foo/bar/Foo.hbm.xml which can be resolved as a classpath resource. | 
|  Configuration | Configuration.addDirectory(File dir)Read all mapping documents from a directory tree. | 
|  Configuration | Configuration.addDocument(Document doc)Read mappings from a DOM Document | 
|  Configuration | Configuration.addFile(File xmlFile)Read mappings from a particular XML file | 
|  Configuration | Configuration.addFile(String xmlFile)Read mappings from a particular XML file | 
|  Configuration | Configuration.addInputStream(InputStream xmlInputStream)Read mappings from an InputStream. | 
|  Configuration | Configuration.addJar(File jar)Read all mappings from a jar file Assumes that any file named *.hbm.xml is a mapping document. | 
|  Configuration | Configuration.addPackage(String packageName)Read package-level metadata. | 
|  Configuration | Configuration.addProperties(Properties extraProperties)Add the given properties to ours. | 
|  Configuration | Configuration.addResource(String resourceName)Read mappings as a application resourceName (i.e. | 
|  Configuration | Configuration.addResource(String resourceName,
            ClassLoader classLoader)Read mappings as a application resource (i.e. | 
|  Configuration | Configuration.addURL(URL url)Read mappings from a URL | 
|  Configuration | Configuration.addXML(String xml)Read mappings from a String | 
| protected  Configuration | ExternalSessionFactoryConfig.buildConfiguration() | 
|  Configuration | Configuration.configure()Use the mappings and properties specified in an application resource named hibernate.cfg.xml. | 
|  Configuration | Configuration.configure(Document document)Use the mappings and properties specified in the given XML document. | 
|  Configuration | Configuration.configure(File configFile)Use the mappings and properties specified in the given application file. | 
|  Configuration | Configuration.configure(String resource)Use the mappings and properties specified in the given application resource. | 
|  Configuration | Configuration.configure(URL url)Use the mappings and properties specified in the given document. | 
| protected  Configuration | Configuration.doConfigure(org.dom4j.Document doc)Parse a dom4j document conforming to the Hibernate Configuration DTD (hibernate-configuration-3.0.dtd) and use its information to configure this Configuration's state | 
| protected  Configuration | Configuration.doConfigure(InputStream stream,
            String resourceName)Configure this configuration's state from the contents of the given input stream. | 
|  Configuration | Configuration.mergeProperties(Properties properties)Adds the incoming properties to the internal properties structure, as long as the internal structure does not already contain an entry for the given key. | 
|  Configuration | Configuration.setCacheConcurrencyStrategy(String entityName,
                            String concurrencyStrategy)Set up a cache for an entity class | 
|  Configuration | Configuration.setCacheConcurrencyStrategy(String entityName,
                            String concurrencyStrategy,
                            String region)Set up a cache for an entity class, giving an explicit region name | 
|  Configuration | Configuration.setCollectionCacheConcurrencyStrategy(String collectionRole,
                                      String concurrencyStrategy)Set up a cache for a collection role | 
|  Configuration | Configuration.setInterceptor(Interceptor interceptor)Set the current Interceptor | 
|  Configuration | Configuration.setNamingStrategy(NamingStrategy namingStrategy)Set a custom naming strategy | 
|  Configuration | Configuration.setProperties(Properties properties)Specify a completely new set of properties | 
|  Configuration | Configuration.setProperty(String propertyName,
            String value)Set a property value by name | 
| Uses of Configuration in org.hibernate.cfg.beanvalidation | 
|---|
| Methods in org.hibernate.cfg.beanvalidation with parameters of type Configuration | |
|---|---|
|  void | BeanValidationEventListener.initialize(Configuration cfg) | 
|  void | BeanValidationIntegrator.integrate(Configuration configuration,
          SessionFactoryImplementor sessionFactory,
          SessionFactoryServiceRegistry serviceRegistry) | 
| Uses of Configuration in org.hibernate.ejb | 
|---|
| Methods in org.hibernate.ejb that return Configuration | |
|---|---|
|  Configuration | Ejb3Configuration.getHibernateConfiguration()Deprecated. This API is intended to give a read-only configuration. | 
| Constructors in org.hibernate.ejb with parameters of type Configuration | |
|---|---|
| EntityManagerFactoryImpl(PersistenceUnitTransactionType transactionType,
                         boolean discardOnClose,
                         Class sessionInterceptorClass,
                         Configuration cfg,
                         ServiceRegistry serviceRegistry,
                         String persistenceUnitName) | |
| Uses of Configuration in org.hibernate.ejb.event | 
|---|
| Methods in org.hibernate.ejb.event with parameters of type Configuration | |
|---|---|
|  void | JpaIntegrator.integrate(Configuration configuration,
          SessionFactoryImplementor sessionFactory,
          SessionFactoryServiceRegistry serviceRegistry) | 
| Uses of Configuration in org.hibernate.envers.ant | 
|---|
| Methods in org.hibernate.envers.ant with parameters of type Configuration | |
|---|---|
| protected  void | ConfigurationTaskWithEnvers.doConfiguration(Configuration configuration) | 
| protected  void | JPAConfigurationTaskWithEnvers.doConfiguration(Configuration configuration) | 
| protected  void | AnnotationConfigurationTaskWithEnvers.doConfiguration(Configuration configuration) | 
| Uses of Configuration in org.hibernate.envers.configuration | 
|---|
| Methods in org.hibernate.envers.configuration with parameters of type Configuration | |
|---|---|
|  org.hibernate.envers.configuration.RevisionInfoConfigurationResult | RevisionInfoConfiguration.configure(Configuration cfg,
          org.hibernate.annotations.common.reflection.ReflectionManager reflectionManager) | 
|  EntitiesConfigurations | EntitiesConfigurator.configure(Configuration cfg,
          org.hibernate.annotations.common.reflection.ReflectionManager reflectionManager,
          GlobalConfiguration globalCfg,
          AuditEntitiesConfiguration verEntCfg,
          AuditStrategy auditStrategy,
          org.dom4j.Document revisionInfoXmlMapping,
          org.dom4j.Element revisionInfoRelationMapping) | 
| static AuditConfiguration | AuditConfiguration.getFor(Configuration cfg) | 
| Constructors in org.hibernate.envers.configuration with parameters of type Configuration | |
|---|---|
| AuditConfiguration(Configuration cfg) | |
| PersistentClassGraphDefiner(Configuration cfg) | |
| Uses of Configuration in org.hibernate.envers.configuration.metadata | 
|---|
| Constructors in org.hibernate.envers.configuration.metadata with parameters of type Configuration | |
|---|---|
| AuditMetadataGenerator(Configuration cfg,
                       GlobalConfiguration globalCfg,
                       AuditEntitiesConfiguration verEntCfg,
                       AuditStrategy auditStrategy,
                       org.dom4j.Element revisionInfoRelationMapping,
                       AuditEntityNameRegister auditEntityNameRegister) | |
| Uses of Configuration in org.hibernate.envers.event | 
|---|
| Methods in org.hibernate.envers.event with parameters of type Configuration | |
|---|---|
|  void | EnversIntegrator.integrate(Configuration configuration,
          SessionFactoryImplementor sessionFactory,
          SessionFactoryServiceRegistry serviceRegistry) | 
| Uses of Configuration in org.hibernate.envers.test | 
|---|
| Fields in org.hibernate.envers.test declared as Configuration | |
|---|---|
| protected  Configuration | AbstractSessionTest.config | 
| protected  Configuration | AbstractOneSessionTest.config | 
| Methods in org.hibernate.envers.test that return Configuration | |
|---|---|
| protected  Configuration | AbstractSessionTest.getCfg() | 
| Uses of Configuration in org.hibernate.event.service.internal | 
|---|
| Methods in org.hibernate.event.service.internal with parameters of type Configuration | |
|---|---|
|  EventListenerRegistry | EventListenerServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory,
                Configuration configuration,
                ServiceRegistryImplementor registry) | 
| Uses of Configuration in org.hibernate.integrator.spi | 
|---|
| Methods in org.hibernate.integrator.spi with parameters of type Configuration | |
|---|---|
|  void | Integrator.integrate(Configuration configuration,
          SessionFactoryImplementor sessionFactory,
          SessionFactoryServiceRegistry serviceRegistry)Perform integration. | 
| Uses of Configuration in org.hibernate.internal | 
|---|
| Constructors in org.hibernate.internal with parameters of type Configuration | |
|---|---|
| SessionFactoryImpl(Configuration cfg,
                   Mapping mapping,
                   ServiceRegistry serviceRegistry,
                   Settings settings,
                   SessionFactoryObserver observer) | |
| Uses of Configuration in org.hibernate.persister.collection | 
|---|
| Constructors in org.hibernate.persister.collection with parameters of type Configuration | |
|---|---|
| AbstractCollectionPersister(Collection collection,
                            CollectionRegionAccessStrategy cacheAccessStrategy,
                            Configuration cfg,
                            SessionFactoryImplementor factory) | |
| BasicCollectionPersister(Collection collection,
                         CollectionRegionAccessStrategy cacheAccessStrategy,
                         Configuration cfg,
                         SessionFactoryImplementor factory) | |
| OneToManyPersister(Collection collection,
                   CollectionRegionAccessStrategy cacheAccessStrategy,
                   Configuration cfg,
                   SessionFactoryImplementor factory) | |
| Uses of Configuration in org.hibernate.persister.internal | 
|---|
| Methods in org.hibernate.persister.internal with parameters of type Configuration | |
|---|---|
|  CollectionPersister | PersisterFactoryImpl.createCollectionPersister(Configuration cfg,
                          Collection collectionMetadata,
                          CollectionRegionAccessStrategy cacheAccessStrategy,
                          SessionFactoryImplementor factory) | 
| Uses of Configuration in org.hibernate.persister.spi | 
|---|
| Methods in org.hibernate.persister.spi with parameters of type Configuration | |
|---|---|
|  CollectionPersister | PersisterFactory.createCollectionPersister(Configuration cfg,
                          Collection model,
                          CollectionRegionAccessStrategy cacheAccessStrategy,
                          SessionFactoryImplementor factory)Create a collection persister instance. | 
| Uses of Configuration in org.hibernate.service.internal | 
|---|
| Methods in org.hibernate.service.internal with parameters of type Configuration | |
|---|---|
|  SessionFactoryServiceRegistryImpl | SessionFactoryServiceRegistryFactoryImpl.buildServiceRegistry(SessionFactoryImplementor sessionFactory,
                     Configuration configuration) | 
| Constructors in org.hibernate.service.internal with parameters of type Configuration | |
|---|---|
| SessionFactoryServiceRegistryImpl(ServiceRegistryImplementor parent,
                                  SessionFactoryImplementor sessionFactory,
                                  Configuration configuration) | |
| Uses of Configuration in org.hibernate.service.spi | 
|---|
| Methods in org.hibernate.service.spi with parameters of type Configuration | |
|---|---|
|  SessionFactoryServiceRegistryImpl | SessionFactoryServiceRegistryFactory.buildServiceRegistry(SessionFactoryImplementor sessionFactory,
                     Configuration configuration)Create the registry. | 
|  R | SessionFactoryServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory,
                Configuration configuration,
                ServiceRegistryImplementor registry)Initiates the managed service. | 
| Uses of Configuration in org.hibernate.stat.internal | 
|---|
| Methods in org.hibernate.stat.internal with parameters of type Configuration | |
|---|---|
|  StatisticsImplementor | StatisticsInitiator.initiateService(SessionFactoryImplementor sessionFactory,
                Configuration configuration,
                ServiceRegistryImplementor registry) | 
| Uses of Configuration in org.hibernate.test.annotations.beanvalidation | 
|---|
| Methods in org.hibernate.test.annotations.beanvalidation with parameters of type Configuration | |
|---|---|
| protected  void | BeanValidationDisabledTest.configure(Configuration cfg) | 
| protected  void | BeanValidationProvidedFactoryTest.configure(Configuration cfg) | 
| protected  void | DDLWithoutCallbackTest.configure(Configuration cfg) | 
| protected  void | HibernateTraversableResolverTest.configure(Configuration cfg) | 
| protected  void | BeanValidationGroupsTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.generics | 
|---|
| Methods in org.hibernate.test.annotations.generics with parameters of type Configuration | |
|---|---|
| protected  void | GenericsTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.id.generationmappings | 
|---|
| Methods in org.hibernate.test.annotations.id.generationmappings with parameters of type Configuration | |
|---|---|
| protected  void | NewGeneratorMappingsTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.manytomany | 
|---|
| Methods in org.hibernate.test.annotations.manytomany with parameters of type Configuration | |
|---|---|
| protected  void | ManyToManyMaxFetchDepth0Test.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.naturalid | 
|---|
| Methods in org.hibernate.test.annotations.naturalid with parameters of type Configuration | |
|---|---|
| protected  void | NaturalIdTest.configure(Configuration cfg) | 
| protected  void | NaturalIdOnSingleManyToOneTest.configure(Configuration cfg) | 
| protected  void | ImmutableNaturalKeyLookupTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.onetoone.hhh4851 | 
|---|
| Methods in org.hibernate.test.annotations.onetoone.hhh4851 with parameters of type Configuration | |
|---|---|
| protected  void | HHH4851Test.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.persister | 
|---|
| Constructors in org.hibernate.test.annotations.persister with parameters of type Configuration | |
|---|---|
| CollectionPersister(Collection collection,
                    CollectionRegionAccessStrategy cache,
                    Configuration cfg,
                    SessionFactoryImplementor factory) | |
| Uses of Configuration in org.hibernate.test.annotations.query | 
|---|
| Methods in org.hibernate.test.annotations.query with parameters of type Configuration | |
|---|---|
| protected  void | QueryAndSQLTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.quote | 
|---|
| Methods in org.hibernate.test.annotations.quote with parameters of type Configuration | |
|---|---|
| protected  void | QuoteGlobalTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.quote.resultsetmappings | 
|---|
| Methods in org.hibernate.test.annotations.quote.resultsetmappings with parameters of type Configuration | |
|---|---|
| protected  void | ExplicitSqlResultSetMappingTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.annotations.strategy | 
|---|
| Methods in org.hibernate.test.annotations.strategy with parameters of type Configuration | |
|---|---|
| protected  void | StrategyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.batch | 
|---|
| Methods in org.hibernate.test.batch with parameters of type Configuration | |
|---|---|
|  void | BatchTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.cache | 
|---|
| Methods in org.hibernate.test.cache with parameters of type Configuration | |
|---|---|
| protected  void | InsertedDataTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.cascade.circle | 
|---|
| Methods in org.hibernate.test.cascade.circle with parameters of type Configuration | |
|---|---|
|  void | MultiPathCircleCascadeTest.configure(Configuration cfg) | 
|  void | CascadeMergeToChildBeforeParentTest.configure(Configuration cfg) | 
|  void | MultiPathCircleCascadeCheckNullFalseDelayedInsertTest.configure(Configuration cfg) | 
|  void | MultiPathCircleCascadeCheckNullibilityTrueTest.configure(Configuration cfg) | 
|  void | MultiPathCircleCascadeCheckNullTrueDelayedInsertTest.configure(Configuration cfg) | 
|  void | MultiPathCircleCascadeCheckNullibilityFalseTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.collection.set | 
|---|
| Methods in org.hibernate.test.collection.set with parameters of type Configuration | |
|---|---|
|  void | PersistentSetTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.component.basic | 
|---|
| Methods in org.hibernate.test.component.basic with parameters of type Configuration | |
|---|---|
|  void | ComponentTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.criteria | 
|---|
| Methods in org.hibernate.test.criteria with parameters of type Configuration | |
|---|---|
|  void | CriteriaQueryTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.cuk | 
|---|
| Methods in org.hibernate.test.cuk with parameters of type Configuration | |
|---|---|
|  void | CompositePropertyRefTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.discriminator | 
|---|
| Methods in org.hibernate.test.discriminator with parameters of type Configuration | |
|---|---|
|  void | SimpleInheritanceTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.dynamicentity.interceptor | 
|---|
| Methods in org.hibernate.test.dynamicentity.interceptor with parameters of type Configuration | |
|---|---|
|  void | InterceptorDynamicEntityTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.dynamicentity.tuplizer | 
|---|
| Methods in org.hibernate.test.dynamicentity.tuplizer with parameters of type Configuration | |
|---|---|
|  void | TuplizerDynamicEntityTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.dynamicentity.tuplizer2 | 
|---|
| Methods in org.hibernate.test.dynamicentity.tuplizer2 with parameters of type Configuration | |
|---|---|
|  void | ImprovedTuplizerDynamicEntityTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.entitymode.map.basic | 
|---|
| Methods in org.hibernate.test.entitymode.map.basic with parameters of type Configuration | |
|---|---|
|  void | DynamicClassTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.events | 
|---|
| Methods in org.hibernate.test.events with parameters of type Configuration | |
|---|---|
|  void | CallbackTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.fetchprofiles.join | 
|---|
| Methods in org.hibernate.test.fetchprofiles.join with parameters of type Configuration | |
|---|---|
|  void | JoinFetchProfileTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.filter | 
|---|
| Methods in org.hibernate.test.filter with parameters of type Configuration | |
|---|---|
|  void | DynamicFilterTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.generatedkeys.identity | 
|---|
| Methods in org.hibernate.test.generatedkeys.identity with parameters of type Configuration | |
|---|---|
|  void | IdentityGeneratedKeysTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.generatedkeys.seqidentity | 
|---|
| Methods in org.hibernate.test.generatedkeys.seqidentity with parameters of type Configuration | |
|---|---|
|  void | SequenceIdentityTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.hql | 
|---|
| Methods in org.hibernate.test.hql with parameters of type Configuration | |
|---|---|
|  void | ASTParserLoadingOrderByTest.configure(Configuration cfg) | 
|  void | CriteriaClassicAggregationReturnTest.configure(Configuration cfg) | 
|  void | FunctionNameAsColumnTest.configure(Configuration cfg) | 
|  void | ClassicTranslatorTest.configure(Configuration cfg) | 
|  void | ASTParserLoadingTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.id | 
|---|
| Methods in org.hibernate.test.id with parameters of type Configuration | |
|---|---|
|  void | UseIdentifierRollbackTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.id.uuid.sqlrep.sqlchar | 
|---|
| Methods in org.hibernate.test.id.uuid.sqlrep.sqlchar with parameters of type Configuration | |
|---|---|
|  void | UUIDCharTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.immutable | 
|---|
| Methods in org.hibernate.test.immutable with parameters of type Configuration | |
|---|---|
|  void | ImmutableTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.immutable.entitywithmutablecollection | 
|---|
| Methods in org.hibernate.test.immutable.entitywithmutablecollection with parameters of type Configuration | |
|---|---|
|  void | AbstractEntityWithOneToManyTest.configure(Configuration cfg) | 
|  void | AbstractEntityWithManyToManyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.insertordering | 
|---|
| Methods in org.hibernate.test.insertordering with parameters of type Configuration | |
|---|---|
|  void | InsertOrderingTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.iterate | 
|---|
| Methods in org.hibernate.test.iterate with parameters of type Configuration | |
|---|---|
|  void | IterateTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.joinfetch | 
|---|
| Methods in org.hibernate.test.joinfetch with parameters of type Configuration | |
|---|---|
|  void | JoinFetchTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.jpa | 
|---|
| Methods in org.hibernate.test.jpa with parameters of type Configuration | |
|---|---|
|  void | AbstractJPATest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.jpa.naturalid | 
|---|
| Methods in org.hibernate.test.jpa.naturalid with parameters of type Configuration | |
|---|---|
|  void | ImmutableNaturalIdTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.jpa.txn | 
|---|
| Methods in org.hibernate.test.jpa.txn with parameters of type Configuration | |
|---|---|
|  void | TransactionJoiningTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.keymanytoone.bidir.component | 
|---|
| Methods in org.hibernate.test.keymanytoone.bidir.component with parameters of type Configuration | |
|---|---|
|  void | EagerKeyManyToOneTest.configure(Configuration cfg) | 
|  void | LazyKeyManyToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.keymanytoone.bidir.embedded | 
|---|
| Methods in org.hibernate.test.keymanytoone.bidir.embedded with parameters of type Configuration | |
|---|---|
|  void | KeyManyToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.lazycache | 
|---|
| Methods in org.hibernate.test.lazycache with parameters of type Configuration | |
|---|---|
|  void | InstrumentCacheTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.lazyonetoone | 
|---|
| Methods in org.hibernate.test.lazyonetoone with parameters of type Configuration | |
|---|---|
|  void | LazyOneToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.legacy | 
|---|
| Methods in org.hibernate.test.legacy with parameters of type Configuration | |
|---|---|
|  void | LegacyTestCase.configure(Configuration cfg) | 
|  void | MapTest.configure(Configuration cfg) | 
|  void | ComponentNotNullTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.manytomany | 
|---|
| Methods in org.hibernate.test.manytomany with parameters of type Configuration | |
|---|---|
|  void | ManyToManyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.manytomany.batchload | 
|---|
| Methods in org.hibernate.test.manytomany.batchload with parameters of type Configuration | |
|---|---|
|  void | BatchedManyToManyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.manytomany.ordered | 
|---|
| Methods in org.hibernate.test.manytomany.ordered with parameters of type Configuration | |
|---|---|
|  void | OrderedManyToManyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.namingstrategy | 
|---|
| Methods in org.hibernate.test.namingstrategy with parameters of type Configuration | |
|---|---|
|  void | NamingStrategyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.naturalid.immutable | 
|---|
| Methods in org.hibernate.test.naturalid.immutable with parameters of type Configuration | |
|---|---|
|  void | ImmutableEntityNaturalIdTest.configure(Configuration cfg) | 
|  void | ImmutableNaturalIdTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.naturalid.mutable | 
|---|
| Methods in org.hibernate.test.naturalid.mutable with parameters of type Configuration | |
|---|---|
|  void | MutableNaturalIdTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.nonflushedchanges | 
|---|
| Methods in org.hibernate.test.nonflushedchanges with parameters of type Configuration | |
|---|---|
|  void | AbstractOperationTestCase.configure(Configuration cfg) | 
|  void | SaveOrUpdateTest.configure(Configuration cfg) | 
|  void | GetLoadTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.ondelete | 
|---|
| Methods in org.hibernate.test.ondelete with parameters of type Configuration | |
|---|---|
|  void | OnDeleteTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.onetoone.formula | 
|---|
| Methods in org.hibernate.test.onetoone.formula with parameters of type Configuration | |
|---|---|
|  void | OneToOneFormulaTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.onetoone.joined | 
|---|
| Methods in org.hibernate.test.onetoone.joined with parameters of type Configuration | |
|---|---|
|  void | JoinedSubclassOneToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.onetoone.nopojo | 
|---|
| Methods in org.hibernate.test.onetoone.nopojo with parameters of type Configuration | |
|---|---|
|  void | DynamicMapOneToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.onetoone.optional | 
|---|
| Methods in org.hibernate.test.onetoone.optional with parameters of type Configuration | |
|---|---|
|  void | OptionalOneToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.onetoone.singletable | 
|---|
| Methods in org.hibernate.test.onetoone.singletable with parameters of type Configuration | |
|---|---|
|  void | DiscrimSubclassOneToOneTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.ops | 
|---|
| Methods in org.hibernate.test.ops with parameters of type Configuration | |
|---|---|
|  void | AbstractOperationTestCase.configure(Configuration cfg) | 
|  void | SimpleOpsTest.configure(Configuration cfg) | 
|  void | SaveOrUpdateTest.configure(Configuration cfg) | 
|  void | GetLoadTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.propertyref.basic | 
|---|
| Methods in org.hibernate.test.propertyref.basic with parameters of type Configuration | |
|---|---|
|  void | PropertyRefTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.proxy | 
|---|
| Methods in org.hibernate.test.proxy with parameters of type Configuration | |
|---|---|
|  void | ProxyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.querycache | 
|---|
| Methods in org.hibernate.test.querycache with parameters of type Configuration | |
|---|---|
|  void | QueryCacheTest.configure(Configuration cfg) | 
|  void | AbstractQueryCacheResultTransformerTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.readonly | 
|---|
| Methods in org.hibernate.test.readonly with parameters of type Configuration | |
|---|---|
|  void | ReadOnlyCriteriaQueryTest.configure(Configuration cfg) | 
|  void | AbstractReadOnlyTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.sql.hand.query | 
|---|
| Methods in org.hibernate.test.sql.hand.query with parameters of type Configuration | |
|---|---|
|  void | NativeSQLQueriesTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.stateless | 
|---|
| Methods in org.hibernate.test.stateless with parameters of type Configuration | |
|---|---|
|  void | StatelessSessionQueryTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.stateless.fetching | 
|---|
| Methods in org.hibernate.test.stateless.fetching with parameters of type Configuration | |
|---|---|
|  void | StatelessSessionFetchingTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.stats | 
|---|
| Methods in org.hibernate.test.stats with parameters of type Configuration | |
|---|---|
|  void | StatsTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.subselectfetch | 
|---|
| Methods in org.hibernate.test.subselectfetch with parameters of type Configuration | |
|---|---|
|  void | SubselectFetchTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.timestamp | 
|---|
| Methods in org.hibernate.test.timestamp with parameters of type Configuration | |
|---|---|
|  void | TimestampTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.tm | 
|---|
| Methods in org.hibernate.test.tm with parameters of type Configuration | |
|---|---|
|  void | CMTTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.test.typeoverride | 
|---|
| Methods in org.hibernate.test.typeoverride with parameters of type Configuration | |
|---|---|
|  void | TypeOverrideTest.configure(Configuration cfg) | 
| Uses of Configuration in org.hibernate.testing.junit4 | 
|---|
| Methods in org.hibernate.testing.junit4 that return Configuration | |
|---|---|
| protected  Configuration | BaseCoreFunctionalTestCase.buildConfiguration() | 
| protected  Configuration | BaseCoreFunctionalTestCase.configuration() | 
| protected  Configuration | BaseCoreFunctionalTestCase.constructConfiguration() | 
| Methods in org.hibernate.testing.junit4 with parameters of type Configuration | |
|---|---|
| protected  void | BaseCoreFunctionalTestCase.addMappings(Configuration configuration) | 
| protected  void | BaseCoreFunctionalTestCase.afterConfigurationBuilt(Configuration configuration) | 
| protected  void | BaseCoreFunctionalTestCase.applyCacheSettings(Configuration configuration) | 
| protected  StandardServiceRegistryImpl | BaseCoreFunctionalTestCase.buildServiceRegistry(Configuration configuration) | 
| protected  void | BaseCoreFunctionalTestCase.configure(Configuration configuration) | 
| Uses of Configuration in org.hibernate.tool.hbm2ddl | 
|---|
| Constructors in org.hibernate.tool.hbm2ddl with parameters of type Configuration | |
|---|---|
| SchemaExport(Configuration configuration)Create a schema exporter for the given Configuration | |
| SchemaExport(Configuration configuration,
             Connection connection)Create a schema exporter for the given Configuration, using the supplied connection for connectivity. | |
| SchemaExport(Configuration configuration,
             Properties properties)Deprecated. properties may be specified via the Configuration object | |
| SchemaExport(ServiceRegistry serviceRegistry,
             Configuration configuration) | |
| SchemaUpdate(Configuration cfg) | |
| SchemaUpdate(Configuration configuration,
             Properties properties) | |
| SchemaUpdate(ServiceRegistry serviceRegistry,
             Configuration cfg) | |
| SchemaValidator(Configuration cfg) | |
| SchemaValidator(Configuration cfg,
                Properties connectionProperties) | |
| SchemaValidator(ServiceRegistry serviceRegistry,
                Configuration cfg) | |
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||