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 TypeInterfaceDescriptioninterfaceAllows creation of a childSessionwhich shares some options with another pre-existing parent session.interfaceAllows creation of a childStatelessSessionwhich 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()CommonSharedBuilder.readOnly(boolean readOnly) CommonSharedBuilder.statementInspector()Signifies that the SQL statement inspector from the original session should be used to create the new session.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 TypeClassDescriptionclassBase class forSharedSessionBuilderimplementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.