Uses of Interface
org.hibernate.SharedSessionBuilder
-
Packages that use SharedSessionBuilder Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
. -
-
Uses of SharedSessionBuilder in org.hibernate
Methods in org.hibernate that return SharedSessionBuilder Modifier and Type Method Description SharedSessionBuilder
SharedSessionBuilder. autoClear(boolean autoClear)
SharedSessionBuilder
SharedSessionBuilder. autoClose()
Signifies that the autoClose flag from the original session should be used to create the new session.SharedSessionBuilder
SharedSessionBuilder. autoClose(boolean autoClose)
SharedSessionBuilder
SharedSessionBuilder. autoJoinTransactions()
Signifies that the autoJoinTransaction flag from the original session should be used to create the new session.SharedSessionBuilder
SharedSessionBuilder. autoJoinTransactions(boolean autoJoinTransactions)
SharedSessionBuilder
SharedSessionBuilder. clearEventListeners()
SharedSessionBuilder
SharedSessionBuilder. connection()
Signifies that the connection from the original session should be used to create the new session.SharedSessionBuilder
SharedSessionBuilder. connection(Connection connection)
SharedSessionBuilder
SharedSessionBuilder. connectionHandlingMode()
Signifies that the connection release mode from the original session should be used to create the new session.SharedSessionBuilder
SharedSessionBuilder. connectionHandlingMode(PhysicalConnectionHandlingMode mode)
SharedSessionBuilder
SharedSessionBuilder. connectionReleaseMode()
Deprecated.useconnectionHandlingMode()
instead.SharedSessionBuilder
SharedSessionBuilder. eventListeners(SessionEventListener... listeners)
SharedSessionBuilder
SharedSessionBuilder. flushMode()
Signifies that the FlushMode from the original session should be used to create the new session.SharedSessionBuilder
SharedSessionBuilder. flushMode(FlushMode flushMode)
SharedSessionBuilder
SharedSessionBuilder. interceptor()
Signifies the interceptor from the original session should be used to create the new session.SharedSessionBuilder
SharedSessionBuilder. interceptor(Interceptor interceptor)
SharedSessionBuilder
SharedSessionBuilder. jdbcTimeZone(TimeZone timeZone)
SharedSessionBuilder
SharedSessionBuilder. noInterceptor()
SharedSessionBuilder
Session. sessionWithOptions()
Obtain aSession
builder with the ability to copy certain information from this session.SharedSessionBuilder
SharedSessionBuilder. statementInspector(StatementInspector statementInspector)
SharedSessionBuilder
SharedSessionBuilder. tenantIdentifier(Object tenantIdentifier)
SharedSessionBuilder
SharedSessionBuilder. tenantIdentifier(String tenantIdentifier)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of SharedSessionBuilder in org.hibernate.engine.spi
Classes in org.hibernate.engine.spi that implement SharedSessionBuilder Modifier and Type Class Description class
AbstractDelegatingSharedSessionBuilder
Base class forSharedSessionBuilder
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.Methods in org.hibernate.engine.spi that return SharedSessionBuilder Modifier and Type Method Description SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. autoClear(boolean autoClear)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. autoClose()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. autoClose(boolean autoClose)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. autoJoinTransactions()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. autoJoinTransactions(boolean autoJoinTransactions)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. clearEventListeners()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. connection()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. connection(Connection connection)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. connectionHandlingMode()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. connectionHandlingMode(PhysicalConnectionHandlingMode mode)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. connectionReleaseMode()
Deprecated.SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. delegate()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. eventListeners(SessionEventListener... listeners)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. flushMode()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. flushMode(FlushMode flushMode)
protected SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. getThis()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. interceptor()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. interceptor(Interceptor interceptor)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. jdbcTimeZone(TimeZone timeZone)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. noInterceptor()
SharedSessionBuilder
SessionDelegatorBaseImpl. sessionWithOptions()
SharedSessionBuilder
SessionLazyDelegator. sessionWithOptions()
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. statementInspector(StatementInspector statementInspector)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. tenantIdentifier(Object tenantIdentifier)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. tenantIdentifier(String tenantIdentifier)
Constructors in org.hibernate.engine.spi with parameters of type SharedSessionBuilder Constructor Description AbstractDelegatingSharedSessionBuilder(SharedSessionBuilder delegate)
-
Uses of SharedSessionBuilder in org.hibernate.internal
Methods in org.hibernate.internal that return SharedSessionBuilder Modifier and Type Method Description SharedSessionBuilder
SessionImpl. sessionWithOptions()
-