Package org.hibernate
Interface SharedSessionBuilder
-
- All Superinterfaces:
SessionBuilder
- All Known Implementing Classes:
AbstractDelegatingSharedSessionBuilder
public interface SharedSessionBuilder extends SessionBuilder
SpecializedSessionBuilderwith access to stuff from another session.- See Also:
Session.sessionWithOptions()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SharedSessionBuilderautoClear(boolean autoClear)Should the session be automatically cleared on a failed transaction?SharedSessionBuilderautoClose()Signifies that the autoClose flag from the original session should be used to create the new session.SharedSessionBuilderautoClose(boolean autoClose)Should the session be automatically closed after transaction completion?SharedSessionBuilderautoJoinTransactions()Signifies that the autoJoinTransaction flag from the original session should be used to create the new session.SharedSessionBuilderautoJoinTransactions(boolean autoJoinTransactions)Should the session built automatically join in any ongoing JTA transactions.SharedSessionBuilderclearEventListeners()Remove all listeners intended for the built session currently held here, including any auto-apply ones; in other words, start with a clean slate.SharedSessionBuilderconnection()Signifies that the connection from the original session should be used to create the new session.SharedSessionBuilderconnection(Connection connection)Adds a specific connection to the session options.SharedSessionBuilderconnectionHandlingMode()Signifies that the connection release mode from the original session should be used to create the new session.SharedSessionBuilderconnectionHandlingMode(PhysicalConnectionHandlingMode mode)Signifies that the connection release mode from the original session should be used to create the new session.SharedSessionBuilderconnectionReleaseMode()Deprecated.useconnectionHandlingMode()instead.SharedSessionBuildereventListeners(SessionEventListener... listeners)Add one or moreSessionEventListenerinstances to the list of listeners for the new session to be built.SharedSessionBuilderflushMode()Signifies that the FlushMode from the original session should be used to create the new session.SharedSessionBuilderflushMode(FlushMode flushMode)Specify the initial FlushMode to use for the opened SessionSharedSessionBuilderinterceptor()Signifies the interceptor from the original session should be used to create the new session.SharedSessionBuilderinterceptor(Interceptor interceptor)Adds a specific interceptor to the session options.SharedSessionBuilderjdbcTimeZone(TimeZone timeZone)SharedSessionBuildernoInterceptor()Signifies that noInterceptorshould be used.SharedSessionBuilderstatementInspector(StatementInspector statementInspector)Applies the givenStatementInspectorto the session.SharedSessionBuildertenantIdentifier(Object tenantIdentifier)Define the tenant identifier to be associated with the opened session.SharedSessionBuildertenantIdentifier(String tenantIdentifier)Deprecated, for removal: This API element is subject to removal in a future version.-
Methods inherited from interface org.hibernate.SessionBuilder
openSession
-
-
-
-
Method Detail
-
connection
SharedSessionBuilder connection()
Signifies that the connection from the original session should be used to create the new session.- Returns:
this, for method chaining
-
interceptor
SharedSessionBuilder interceptor()
Signifies the interceptor from the original session should be used to create the new session.- Returns:
this, for method chaining
-
connectionReleaseMode
@Deprecated(since="6.0") SharedSessionBuilder connectionReleaseMode()
Deprecated.useconnectionHandlingMode()instead.Signifies that the connection release mode from the original session should be used to create the new session.- Returns:
this, for method chaining
-
connectionHandlingMode
SharedSessionBuilder connectionHandlingMode()
Signifies that the connection release mode from the original session should be used to create the new session.- Returns:
this, for method chaining
-
autoJoinTransactions
SharedSessionBuilder autoJoinTransactions()
Signifies that the autoJoinTransaction flag from the original session should be used to create the new session.- Returns:
this, for method chaining
-
flushMode
SharedSessionBuilder flushMode()
Signifies that the FlushMode from the original session should be used to create the new session.- Returns:
this, for method chaining
-
autoClose
SharedSessionBuilder autoClose()
Signifies that the autoClose flag from the original session should be used to create the new session.- Returns:
this, for method chaining
-
statementInspector
SharedSessionBuilder statementInspector(StatementInspector statementInspector)
Description copied from interface:SessionBuilderApplies the givenStatementInspectorto the session.- Specified by:
statementInspectorin interfaceSessionBuilder- Parameters:
statementInspector- The StatementInspector to use.- Returns:
this, for method chaining
-
connectionHandlingMode
SharedSessionBuilder connectionHandlingMode(PhysicalConnectionHandlingMode mode)
Description copied from interface:SessionBuilderSignifies that the connection release mode from the original session should be used to create the new session.- Specified by:
connectionHandlingModein interfaceSessionBuilder- Parameters:
mode- The connection handling mode to use.- Returns:
this, for method chaining
-
autoClear
SharedSessionBuilder autoClear(boolean autoClear)
Description copied from interface:SessionBuilderShould the session be automatically cleared on a failed transaction?- Specified by:
autoClearin interfaceSessionBuilder- Parameters:
autoClear- Whether the Session should be automatically cleared- Returns:
this, for method chaining
-
flushMode
SharedSessionBuilder flushMode(FlushMode flushMode)
Description copied from interface:SessionBuilderSpecify the initial FlushMode to use for the opened Session- Specified by:
flushModein interfaceSessionBuilder- Parameters:
flushMode- The initial FlushMode to use for the opened Session- Returns:
this, for method chaining- See Also:
PersistenceContextType
-
tenantIdentifier
@Deprecated(forRemoval=true) SharedSessionBuilder tenantIdentifier(String tenantIdentifier)
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:SessionBuilderDefine the tenant identifier to be associated with the opened session.- Specified by:
tenantIdentifierin interfaceSessionBuilder- Parameters:
tenantIdentifier- The tenant identifier.- Returns:
this, for method chaining
-
tenantIdentifier
SharedSessionBuilder tenantIdentifier(Object tenantIdentifier)
Description copied from interface:SessionBuilderDefine the tenant identifier to be associated with the opened session.- Specified by:
tenantIdentifierin interfaceSessionBuilder- Parameters:
tenantIdentifier- The tenant identifier.- Returns:
this, for method chaining
-
eventListeners
SharedSessionBuilder eventListeners(SessionEventListener... listeners)
Description copied from interface:SessionBuilderAdd one or moreSessionEventListenerinstances to the list of listeners for the new session to be built.- Specified by:
eventListenersin interfaceSessionBuilder- Parameters:
listeners- The listeners to incorporate into the built Session- Returns:
this, for method chaining
-
clearEventListeners
SharedSessionBuilder clearEventListeners()
Description copied from interface:SessionBuilderRemove all listeners intended for the built session currently held here, including any auto-apply ones; in other words, start with a clean slate.- Specified by:
clearEventListenersin interfaceSessionBuilder- Returns:
this, for method chaining
-
jdbcTimeZone
SharedSessionBuilder jdbcTimeZone(TimeZone timeZone)
- Specified by:
jdbcTimeZonein interfaceSessionBuilder
-
interceptor
SharedSessionBuilder interceptor(Interceptor interceptor)
Description copied from interface:SessionBuilderAdds a specific interceptor to the session options.- Specified by:
interceptorin interfaceSessionBuilder- Parameters:
interceptor- The interceptor to use.- Returns:
this, for method chaining
-
noInterceptor
SharedSessionBuilder noInterceptor()
Description copied from interface:SessionBuilderSignifies that noInterceptorshould be used.By default, if no
Interceptoris explicitly specified, theInterceptorassociated with theSessionFactoryis inherited by the newSession.Calling
SessionBuilder.interceptor(Interceptor)with null has the same effect.- Specified by:
noInterceptorin interfaceSessionBuilder- Returns:
this, for method chaining
-
connection
SharedSessionBuilder connection(Connection connection)
Description copied from interface:SessionBuilderAdds a specific connection to the session options.- Specified by:
connectionin interfaceSessionBuilder- Parameters:
connection- The connection to use.- Returns:
this, for method chaining
-
autoJoinTransactions
SharedSessionBuilder autoJoinTransactions(boolean autoJoinTransactions)
Description copied from interface:SessionBuilderShould the session built automatically join in any ongoing JTA transactions.- Specified by:
autoJoinTransactionsin interfaceSessionBuilder- Parameters:
autoJoinTransactions- Should JTA transactions be automatically joined- Returns:
this, for method chaining- See Also:
SynchronizationType.SYNCHRONIZED
-
autoClose
SharedSessionBuilder autoClose(boolean autoClose)
Description copied from interface:SessionBuilderShould the session be automatically closed after transaction completion?- Specified by:
autoClosein interfaceSessionBuilder- Parameters:
autoClose- Should the session be automatically closed- Returns:
this, for method chaining- See Also:
PersistenceContextType
-
-