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 ofSessionandStatelessSession, 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. -
-
Uses of SharedSessionBuilder in org.hibernate
Methods in org.hibernate that return SharedSessionBuilder Modifier and Type Method Description SharedSessionBuilderSharedSessionBuilder. autoClose()Signifies that the autoClose flag from the original session should be used to create the new session.SharedSessionBuilderSharedSessionBuilder. autoClose(boolean autoClose)SharedSessionBuilderSharedSessionBuilder. autoJoinTransactions()Signifies that the autoJoinTransaction flag from the original session should be used to create the new session.SharedSessionBuilderSharedSessionBuilder. autoJoinTransactions(boolean autoJoinTransactions)SharedSessionBuilderSharedSessionBuilder. connection()Signifies that the connection from the original session should be used to create the new session.SharedSessionBuilderSharedSessionBuilder. connection(Connection connection)SharedSessionBuilderSharedSessionBuilder. connectionHandlingMode()Signifies that the connection release mode from the original session should be used to create the new session.SharedSessionBuilderSharedSessionBuilder. connectionReleaseMode()Deprecated.useconnectionHandlingMode()instead.SharedSessionBuilderSharedSessionBuilder. flushMode()Signifies that the FlushMode from the original session should be used to create the new session.SharedSessionBuilderSharedSessionBuilder. interceptor()Signifies the interceptor from the original session should be used to create the new session.SharedSessionBuilderSharedSessionBuilder. interceptor(Interceptor interceptor)SharedSessionBuilderSharedSessionBuilder. noInterceptor()SharedSessionBuilderSession. sessionWithOptions()Obtain aSessionbuilder with the ability to copy certain information from this session. -
Uses of SharedSessionBuilder in org.hibernate.engine.spi
Classes in org.hibernate.engine.spi that implement SharedSessionBuilder Modifier and Type Class Description classAbstractDelegatingSharedSessionBuilderBase class forSharedSessionBuilderimplementations 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 SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. autoClear(boolean autoClear)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. autoClose()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. autoClose(boolean autoClose)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. autoJoinTransactions()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. autoJoinTransactions(boolean autoJoinTransactions)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. clearEventListeners()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. connection()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. connection(Connection connection)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. connectionHandlingMode()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. connectionHandlingMode(PhysicalConnectionHandlingMode mode)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. connectionReleaseMode()Deprecated.SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. delegate()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. eventListeners(SessionEventListener... listeners)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. flushMode()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. flushMode(FlushMode flushMode)protected SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. getThis()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. interceptor()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. interceptor(Interceptor interceptor)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. jdbcTimeZone(TimeZone timeZone)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. noInterceptor()SharedSessionBuilderSessionDelegatorBaseImpl. sessionWithOptions()SharedSessionBuilderSessionLazyDelegator. sessionWithOptions()SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. statementInspector(StatementInspector statementInspector)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. tenantIdentifier(String tenantIdentifier)Constructors in org.hibernate.engine.spi with parameters of type SharedSessionBuilder Constructor Description AbstractDelegatingSharedSessionBuilder(SharedSessionBuilder delegate)
-