Uses of Class
org.hibernate.boot.MetadataSources
-
Packages that use MetadataSources Package Description org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.cfgxml.spi An SPI service for processing and handlingcfg.xml
files.org.hibernate.boot.internal org.hibernate.boot.model.process.internal org.hibernate.boot.model.process.spi Defines an SPI used during the process of transforming mapping sources into theMetadata
reference.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.testing.junit4 org.hibernate.testing.orm.domain org.hibernate.testing.orm.domain.animal Standard model for Hibernate's legacy Animal model used in HQL testingorg.hibernate.testing.orm.domain.contacts org.hibernate.testing.orm.domain.retail org.hibernate.testing.orm.junit -
-
Uses of MetadataSources in org.hibernate.boot
Methods in org.hibernate.boot that return MetadataSources Modifier and Type Method Description MetadataSources
MetadataSources. addAnnotatedClass(Class<?> annotatedClass)
Read metadata from the annotations attached to the given class.MetadataSources
MetadataSources. addAnnotatedClasses(Class<?>... annotatedClasses)
Vararg form ofaddAnnotatedClass(Class)
.MetadataSources
MetadataSources. addAnnotatedClassName(String annotatedClassName)
Read metadata from the annotations attached to the given class.MetadataSources
MetadataSources. addAnnotatedClassNames(String... annotatedClassNames)
Vararg form ofaddAnnotatedClassName(String)
.MetadataSources
MetadataSources. addCacheableFile(File file)
Add a cached mapping file.MetadataSources
MetadataSources. addCacheableFile(File file, File cacheDirectory)
Add a cached mapping file.MetadataSources
MetadataSources. addCacheableFile(String path)
Add acached mapping file
.MetadataSources
MetadataSources. addCacheableFile(String path, File cacheDirectory)
Add acached mapping file
.MetadataSources
MetadataSources. addCacheableFileStrictly(File file)
INTENDED FOR TESTSUITE USE ONLY!MetadataSources
MetadataSources. addCacheableFileStrictly(File file, File cacheDir)
INTENDED FOR TESTSUITE USE ONLY!MetadataSources
MetadataSources. addDirectory(File dir)
Read all.hbm.xml
mapping documents from a directory tree.MetadataSources
MetadataSources. addFile(File file)
Read mappings from a particular XML file.MetadataSources
MetadataSources. addFile(String path)
Read mappings from a particular XML file.MetadataSources
MetadataSources. addInputStream(InputStream xmlInputStream)
Read metadata from anInputStream
.MetadataSources
MetadataSources. addInputStream(InputStreamAccess xmlInputStreamAccess)
Read metadata from anInputStream
accessMetadataSources
MetadataSources. addJar(File jar)
Read all.hbm.xml
mappings from a jar file.MetadataSources
MetadataSources. addPackage(Package packageRef)
Read package-level metadata.MetadataSources
MetadataSources. addPackage(String packageName)
Read package-level metadata.MetadataSources
MetadataSources. addQueryImport(String importedName, Class<?> target)
MetadataSources
MetadataSources. addResource(String name)
Read mappings as an application resourceName (i.e.MetadataSources
MetadataSources. addURL(URL url)
Read mappings from aURL
MetadataSources
MetadataSources. addXmlBinding(Binding<?> binding)
Add XML mapping bindings created from an arbitrary source by the binder. -
Uses of MetadataSources in org.hibernate.boot.cfgxml.spi
Methods in org.hibernate.boot.cfgxml.spi with parameters of type MetadataSources Modifier and Type Method Description void
MappingReference. apply(MetadataSources metadataSources)
-
Uses of MetadataSources in org.hibernate.boot.internal
Constructors in org.hibernate.boot.internal with parameters of type MetadataSources Constructor Description MetadataBuilderImpl(MetadataSources sources)
MetadataBuilderImpl(MetadataSources sources, StandardServiceRegistry serviceRegistry)
-
Uses of MetadataSources in org.hibernate.boot.model.process.internal
Methods in org.hibernate.boot.model.process.internal with parameters of type MetadataSources Modifier and Type Method Description static ManagedResourcesImpl
ManagedResourcesImpl. baseline(MetadataSources sources, BootstrapContext bootstrapContext)
-
Uses of MetadataSources in org.hibernate.boot.model.process.spi
Methods in org.hibernate.boot.model.process.spi with parameters of type MetadataSources Modifier and Type Method Description static MetadataImplementor
MetadataBuildingProcess. build(MetadataSources sources, BootstrapContext bootstrapContext, MetadataBuildingOptions options)
Unified single phase for MetadataSources to Metadata processstatic ManagedResources
MetadataBuildingProcess. prepare(MetadataSources sources, BootstrapContext bootstrapContext)
First step of two-phase for MetadataSources to Metadata process -
Uses of MetadataSources in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi with parameters of type MetadataSources Modifier and Type Method Description void
MetadataSourcesContributor. contribute(MetadataSources metadataSources)
Perform the process of contributing to theMetadataSources
.MetadataBuilderImplementor
MetadataBuilderFactory. getMetadataBuilder(MetadataSources metadatasources, MetadataBuilderImplementor defaultBuilder)
Creates aMetadataBuilderImplementor
. -
Uses of MetadataSources in org.hibernate.cfg
Constructors in org.hibernate.cfg with parameters of type MetadataSources Constructor Description Configuration(MetadataSources metadataSources)
Create a new instance, using the givenMetadataSources
, and aBootstrapServiceRegistry
obtained from theMetadataSources
. -
Uses of MetadataSources in org.hibernate.testing.junit4
Methods in org.hibernate.testing.junit4 with parameters of type MetadataSources Modifier and Type Method Description protected void
BaseNonConfigCoreFunctionalTestCase. afterMetadataSourcesApplied(MetadataSources metadataSources)
protected void
BaseNonConfigCoreFunctionalTestCase. applyMetadataSources(MetadataSources sources)
-
Uses of MetadataSources in org.hibernate.testing.orm.domain
Methods in org.hibernate.testing.orm.domain with parameters of type MetadataSources Modifier and Type Method Description void
AbstractDomainModelDescriptor. applyDomainModel(MetadataSources sources)
void
DomainModelDescriptor. applyDomainModel(MetadataSources sources)
Apply the model classes to the given MetadataSources -
Uses of MetadataSources in org.hibernate.testing.orm.domain.animal
Methods in org.hibernate.testing.orm.domain.animal with parameters of type MetadataSources Modifier and Type Method Description static void
AnimalDomainModel. applyContactsModel(MetadataSources sources)
-
Uses of MetadataSources in org.hibernate.testing.orm.domain.contacts
Methods in org.hibernate.testing.orm.domain.contacts with parameters of type MetadataSources Modifier and Type Method Description static void
ContactsDomainModel. applyContactsModel(MetadataSources sources)
-
Uses of MetadataSources in org.hibernate.testing.orm.domain.retail
Methods in org.hibernate.testing.orm.domain.retail with parameters of type MetadataSources Modifier and Type Method Description static void
RetailDomainModel. applyRetailModel(MetadataSources sources)
-
Uses of MetadataSources in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit with parameters of type MetadataSources Modifier and Type Method Description protected void
BaseSessionFactoryFunctionalTest. applyMetadataSources(MetadataSources metadataSources)
-