Interface BootstrapContext

  • All Known Implementing Classes:
    BootstrapContextImpl, BootstrapContextImpl

    public interface BootstrapContext
    Defines a context for things generally available to the process of bootstrapping a SessionFactory that are expected to be released after the SessionFactory is built.
    • Method Detail

      • getCustomTypeProducer

        BeanInstanceProducer getCustomTypeProducer()
        BeanInstanceProducer to use when creating custom type references.
      • isJpaBootstrap

        boolean isJpaBootstrap()
        Whether the bootstrap was initiated from JPA bootstrapping.
        See Also:
        markAsJpaBootstrap()
      • markAsJpaBootstrap

        void markAsJpaBootstrap()
        Indicates that bootstrap was initiated from JPA bootstrapping.
      • getJpaTempClassLoader

        ClassLoader getJpaTempClassLoader()
        Access the temporary ClassLoader passed to us as defined by PersistenceUnitInfo.getNewTempClassLoader(), if any.
        Returns:
        The tempo ClassLoader
      • getClassLoaderAccess

        ClassLoaderAccess getClassLoaderAccess()
        Access to class loading capabilities
      • getClassmateContext

        ClassmateContext getClassmateContext()
        Access to the shared Classmate objects used throughout Hibernate's bootstrap process.
        Returns:
        Access to the shared Classmate delegates.
      • getArchiveDescriptorFactory

        ArchiveDescriptorFactory getArchiveDescriptorFactory()
        Access to the ArchiveDescriptorFactory to be used for scanning
        Returns:
        The ArchiveDescriptorFactory
      • getScanOptions

        ScanOptions getScanOptions()
        Access to the options to be used for scanning
        Returns:
        The scan options
      • getScanEnvironment

        ScanEnvironment getScanEnvironment()
        Access to the environment for scanning. Consider this temporary; see discussion on ScanEnvironment
        Returns:
        The scan environment
      • getScanner

        Object getScanner()
        Access to the Scanner to be used for scanning. Can be:
        • A Scanner instance
        • A Class reference to the Scanner implementor
        • A String naming the Scanner implementor
        Returns:
        The scanner
      • getReflectionManager

        org.hibernate.annotations.common.reflection.ReflectionManager getReflectionManager()
        Retrieve the Hibernate Commons Annotations ReflectionManager to use.
        Returns:
        The Hibernate Commons Annotations ReflectionManager to use.
      • getJandexView

        org.jboss.jandex.IndexView getJandexView()
        Access to the Jandex index passed by call to MetadataBuilder.applyIndexView(IndexView), if any.

        Note that Jandex is currently not used. See https://github.com/hibernate/hibernate-orm/wiki/Roadmap7.0

        Returns:
        The Jandex index
      • getSqlFunctions

        Map<String,​SqmFunctionDescriptor> getSqlFunctions()
        Access to any SQL functions explicitly registered with the MetadataBuilder. This does not include Dialect defined functions, etc.

        Should never return null

        Returns:
        The SQLFunctions registered through MetadataBuilder
      • getAuxiliaryDatabaseObjectList

        Collection<AuxiliaryDatabaseObject> getAuxiliaryDatabaseObjectList()
        Access to any AuxiliaryDatabaseObject explicitly registered with the MetadataBuilder. This does not include AuxiliaryDatabaseObject defined in mappings.

        Should never return null

        Returns:
        The AuxiliaryDatabaseObject registered through MetadataBuilder
      • getAttributeConverters

        Collection<ConverterDescriptor> getAttributeConverters()
        Access to collected AttributeConverter definitions.

        Should never return null

        Returns:
        The AttributeConverterInfo registered through MetadataBuilder
      • getCacheRegionDefinitions

        Collection<CacheRegionDefinition> getCacheRegionDefinitions()
        Access to all explicit cache region mappings.

        Should never return null

        Returns:
        Explicit cache region mappings
      • release

        void release()
        Releases the "bootstrap only" resources held by this BootstrapContext.
      • registerAdHocBasicType

        void registerAdHocBasicType​(BasicTypeImpl<?> basicType)
        To support envers
      • resolveAdHocBasicType

        <T> BasicTypeImpl<T> resolveAdHocBasicType​(String key)
        To support envers