Package org.hibernate.engine.spi
Class AbstractDelegatingSharedSessionBuilder
- java.lang.Object
-
- org.hibernate.engine.spi.AbstractDelegatingSharedSessionBuilder
-
- All Implemented Interfaces:
SessionBuilder
,SharedSessionBuilder
public abstract class AbstractDelegatingSharedSessionBuilder extends Object implements SharedSessionBuilder
Base class forSharedSessionBuilder
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.
-
-
Constructor Summary
Constructors Constructor Description AbstractDelegatingSharedSessionBuilder(SharedSessionBuilder delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SharedSessionBuilder
autoClear(boolean autoClear)
Should the session be automatically cleared on a failed transaction?SharedSessionBuilder
autoClose()
Signifies that the autoClose flag from the original session should be used to create the new session.SharedSessionBuilder
autoClose(boolean autoClose)
Should the session be automatically closed after transaction completion?SharedSessionBuilder
autoJoinTransactions()
Signifies that the autoJoinTransaction flag from the original session should be used to create the new session.SharedSessionBuilder
autoJoinTransactions(boolean autoJoinTransactions)
Should the session built automatically join in any ongoing JTA transactions.SharedSessionBuilder
clearEventListeners()
Remove all listeners intended for the built session currently held here, including any auto-apply ones; in other words, start with a clean slate.SharedSessionBuilder
connection()
Signifies that the connection from the original session should be used to create the new session.SharedSessionBuilder
connection(Connection connection)
Adds a specific connection to the session options.SharedSessionBuilder
connectionHandlingMode()
Signifies that the connection release mode from the original session should be used to create the new session.SharedSessionBuilder
connectionHandlingMode(PhysicalConnectionHandlingMode mode)
Signifies that the connection release mode from the original session should be used to create the new session.SharedSessionBuilder
connectionReleaseMode()
Deprecated.SharedSessionBuilder
delegate()
SharedSessionBuilder
eventListeners(SessionEventListener... listeners)
Add one or moreSessionEventListener
instances to the list of listeners for the new session to be built.SharedSessionBuilder
flushMode()
Signifies that the FlushMode from the original session should be used to create the new session.SharedSessionBuilder
flushMode(FlushMode flushMode)
Specify the initial FlushMode to use for the opened Sessionprotected SharedSessionBuilder
getThis()
SharedSessionBuilder
interceptor()
Signifies the interceptor from the original session should be used to create the new session.SharedSessionBuilder
interceptor(Interceptor interceptor)
Adds a specific interceptor to the session options.SharedSessionBuilder
jdbcTimeZone(TimeZone timeZone)
SharedSessionBuilder
noInterceptor()
Signifies that noInterceptor
should be used.Session
openSession()
Opens a session with the specified options.SharedSessionBuilder
statementInspector(StatementInspector statementInspector)
Applies the givenStatementInspector
to the session.SharedSessionBuilder
tenantIdentifier(Object tenantIdentifier)
Define the tenant identifier to be associated with the opened session.SharedSessionBuilder
tenantIdentifier(String tenantIdentifier)
Define the tenant identifier to be associated with the opened session.
-
-
-
Constructor Detail
-
AbstractDelegatingSharedSessionBuilder
public AbstractDelegatingSharedSessionBuilder(SharedSessionBuilder delegate)
-
-
Method Detail
-
getThis
protected SharedSessionBuilder getThis()
-
delegate
public SharedSessionBuilder delegate()
-
openSession
public Session openSession()
Description copied from interface:SessionBuilder
Opens a session with the specified options.- Specified by:
openSession
in interfaceSessionBuilder
- Returns:
- The session
-
interceptor
public SharedSessionBuilder interceptor()
Description copied from interface:SharedSessionBuilder
Signifies the interceptor from the original session should be used to create the new session.- Specified by:
interceptor
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
connection
public SharedSessionBuilder connection()
Description copied from interface:SharedSessionBuilder
Signifies that the connection from the original session should be used to create the new session.- Specified by:
connection
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
connectionReleaseMode
@Deprecated(since="6.0") public SharedSessionBuilder connectionReleaseMode()
Deprecated.Description copied from interface:SharedSessionBuilder
Signifies that the connection release mode from the original session should be used to create the new session.- Specified by:
connectionReleaseMode
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
connectionHandlingMode
public SharedSessionBuilder connectionHandlingMode()
Description copied from interface:SharedSessionBuilder
Signifies that the connection release mode from the original session should be used to create the new session.- Specified by:
connectionHandlingMode
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
autoJoinTransactions
public SharedSessionBuilder autoJoinTransactions()
Description copied from interface:SharedSessionBuilder
Signifies that the autoJoinTransaction flag from the original session should be used to create the new session.- Specified by:
autoJoinTransactions
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
autoClose
public SharedSessionBuilder autoClose()
Description copied from interface:SharedSessionBuilder
Signifies that the autoClose flag from the original session should be used to create the new session.- Specified by:
autoClose
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
interceptor
public SharedSessionBuilder interceptor(Interceptor interceptor)
Description copied from interface:SessionBuilder
Adds a specific interceptor to the session options.- Specified by:
interceptor
in interfaceSessionBuilder
- Specified by:
interceptor
in interfaceSharedSessionBuilder
- Parameters:
interceptor
- The interceptor to use.- Returns:
this
, for method chaining
-
noInterceptor
public SharedSessionBuilder noInterceptor()
Description copied from interface:SessionBuilder
Signifies that noInterceptor
should be used.By default, if no
Interceptor
is explicitly specified, theInterceptor
associated with theSessionFactory
is inherited by the newSession
.Calling
SessionBuilder.interceptor(Interceptor)
with null has the same effect.- Specified by:
noInterceptor
in interfaceSessionBuilder
- Specified by:
noInterceptor
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
statementInspector
public SharedSessionBuilder statementInspector(StatementInspector statementInspector)
Description copied from interface:SessionBuilder
Applies the givenStatementInspector
to the session.- Specified by:
statementInspector
in interfaceSessionBuilder
- Specified by:
statementInspector
in interfaceSharedSessionBuilder
- Parameters:
statementInspector
- The StatementInspector to use.- Returns:
this
, for method chaining
-
connection
public SharedSessionBuilder connection(Connection connection)
Description copied from interface:SessionBuilder
Adds a specific connection to the session options.- Specified by:
connection
in interfaceSessionBuilder
- Specified by:
connection
in interfaceSharedSessionBuilder
- Parameters:
connection
- The connection to use.- Returns:
this
, for method chaining
-
autoJoinTransactions
public SharedSessionBuilder autoJoinTransactions(boolean autoJoinTransactions)
Description copied from interface:SessionBuilder
Should the session built automatically join in any ongoing JTA transactions.- Specified by:
autoJoinTransactions
in interfaceSessionBuilder
- Specified by:
autoJoinTransactions
in interfaceSharedSessionBuilder
- Parameters:
autoJoinTransactions
- Should JTA transactions be automatically joined- Returns:
this
, for method chaining- See Also:
SynchronizationType.SYNCHRONIZED
-
autoClose
public SharedSessionBuilder autoClose(boolean autoClose)
Description copied from interface:SessionBuilder
Should the session be automatically closed after transaction completion?- Specified by:
autoClose
in interfaceSessionBuilder
- Specified by:
autoClose
in interfaceSharedSessionBuilder
- Parameters:
autoClose
- Should the session be automatically closed- Returns:
this
, for method chaining- See Also:
PersistenceContextType
-
tenantIdentifier
public SharedSessionBuilder tenantIdentifier(String tenantIdentifier)
Description copied from interface:SessionBuilder
Define the tenant identifier to be associated with the opened session.- Specified by:
tenantIdentifier
in interfaceSessionBuilder
- Specified by:
tenantIdentifier
in interfaceSharedSessionBuilder
- Parameters:
tenantIdentifier
- The tenant identifier.- Returns:
this
, for method chaining
-
tenantIdentifier
public SharedSessionBuilder tenantIdentifier(Object tenantIdentifier)
Description copied from interface:SessionBuilder
Define the tenant identifier to be associated with the opened session.- Specified by:
tenantIdentifier
in interfaceSessionBuilder
- Specified by:
tenantIdentifier
in interfaceSharedSessionBuilder
- Parameters:
tenantIdentifier
- The tenant identifier.- Returns:
this
, for method chaining
-
eventListeners
public SharedSessionBuilder eventListeners(SessionEventListener... listeners)
Description copied from interface:SessionBuilder
Add one or moreSessionEventListener
instances to the list of listeners for the new session to be built.- Specified by:
eventListeners
in interfaceSessionBuilder
- Specified by:
eventListeners
in interfaceSharedSessionBuilder
- Parameters:
listeners
- The listeners to incorporate into the built Session- Returns:
this
, for method chaining
-
clearEventListeners
public SharedSessionBuilder clearEventListeners()
Description copied from interface:SessionBuilder
Remove 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:
clearEventListeners
in interfaceSessionBuilder
- Specified by:
clearEventListeners
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
connectionHandlingMode
public SharedSessionBuilder connectionHandlingMode(PhysicalConnectionHandlingMode mode)
Description copied from interface:SessionBuilder
Signifies that the connection release mode from the original session should be used to create the new session.- Specified by:
connectionHandlingMode
in interfaceSessionBuilder
- Specified by:
connectionHandlingMode
in interfaceSharedSessionBuilder
- Parameters:
mode
- The connection handling mode to use.- Returns:
this
, for method chaining
-
autoClear
public SharedSessionBuilder autoClear(boolean autoClear)
Description copied from interface:SessionBuilder
Should the session be automatically cleared on a failed transaction?- Specified by:
autoClear
in interfaceSessionBuilder
- Specified by:
autoClear
in interfaceSharedSessionBuilder
- Parameters:
autoClear
- Whether the Session should be automatically cleared- Returns:
this
, for method chaining
-
flushMode
public SharedSessionBuilder flushMode(FlushMode flushMode)
Description copied from interface:SessionBuilder
Specify the initial FlushMode to use for the opened Session- Specified by:
flushMode
in interfaceSessionBuilder
- Specified by:
flushMode
in interfaceSharedSessionBuilder
- Parameters:
flushMode
- The initial FlushMode to use for the opened Session- Returns:
this
, for method chaining- See Also:
PersistenceContextType
-
flushMode
public SharedSessionBuilder flushMode()
Description copied from interface:SharedSessionBuilder
Signifies that the FlushMode from the original session should be used to create the new session.- Specified by:
flushMode
in interfaceSharedSessionBuilder
- Returns:
this
, for method chaining
-
jdbcTimeZone
public SharedSessionBuilder jdbcTimeZone(TimeZone timeZone)
- Specified by:
jdbcTimeZone
in interfaceSessionBuilder
- Specified by:
jdbcTimeZone
in interfaceSharedSessionBuilder
-
-