Uses of Interface
org.hibernate.engine.creation.CommonSharedBuilder
Packages that use CommonSharedBuilder
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
-
Uses of CommonSharedBuilder in org.hibernate
Subinterfaces of CommonSharedBuilder in org.hibernateModifier and TypeInterfaceDescriptioninterface
Allows creation of a childSession
which shares some options with another pre-existing parent session.interface
Allows creation of a childStatelessSession
which shares some options with another pre-existing parent session. -
Uses of CommonSharedBuilder in org.hibernate.engine.creation
Methods in org.hibernate.engine.creation that return CommonSharedBuilderModifier and TypeMethodDescriptionCommonSharedBuilder.connection()
Signifies that the connection from the original session should be used to create the new session.CommonSharedBuilder.connectionHandling
(ConnectionAcquisitionMode acquisitionMode, ConnectionReleaseMode releaseMode) CommonSharedBuilder.initialCacheMode
(CacheMode cacheMode) CommonSharedBuilder.interceptor()
Signifies the interceptor from the original session should be used to create the new session.CommonSharedBuilder.interceptor
(Interceptor interceptor) CommonSharedBuilder.jdbcTimeZone
(TimeZone timeZone) CommonSharedBuilder.noInterceptor()
CommonSharedBuilder.noSessionInterceptorCreation()
CommonSharedBuilder.noStatementInspector()
Signifies that no SQL statement inspector should be used.CommonSharedBuilder.readOnly
(boolean readOnly) CommonSharedBuilder.statementInspector()
Signifies that the SQL statement inspector from the original session should be used.CommonSharedBuilder.statementInspector
(UnaryOperator<String> operator) CommonSharedBuilder.tenantIdentifier
(Object tenantIdentifier) -
Uses of CommonSharedBuilder in org.hibernate.engine.creation.spi
Subinterfaces of CommonSharedBuilder in org.hibernate.engine.creation.spi -
Uses of CommonSharedBuilder in org.hibernate.engine.spi
Classes in org.hibernate.engine.spi that implement CommonSharedBuilderModifier and TypeClassDescriptionclass
Base class forSharedSessionBuilder
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.