public abstract class AbstractDelegatingSharedSessionBuilder extends Object implements SharedSessionBuilder
SharedSessionBuilder
implementations that wish to implement only parts of that contract
themselves while forwarding other method invocations to a delegate instance.Constructor and Description |
---|
AbstractDelegatingSharedSessionBuilder(SharedSessionBuilder delegate) |
Modifier and Type | Method and Description |
---|---|
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.
|
SessionBuilder |
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 |
connectionReleaseMode()
Signifies that the connection release mode from the original session should be used to create the new session.
|
SharedSessionBuilder |
connectionReleaseMode(ConnectionReleaseMode connectionReleaseMode)
Use a specific connection release mode for these session options.
|
SessionBuilder |
eventListeners(SessionEventListener... listeners)
Apply one or more SessionEventListener instances to the listeners for the Session to be built.
|
SharedSessionBuilder |
flushBeforeCompletion()
Signifies that the flushBeforeCompletion flag from the original session should be used to create the new session.
|
SharedSessionBuilder |
flushBeforeCompletion(boolean flushBeforeCompletion)
Should the session be automatically flushed during the "before completion" phase of transaction handling.
|
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 |
noInterceptor()
Signifies that no
Interceptor should be used. |
Session |
openSession()
Opens a session with the specified options.
|
SessionBuilder |
statementInspector(StatementInspector statementInspector)
Applies a specific StatementInspector to the session options.
|
SessionBuilder |
tenantIdentifier(String tenantIdentifier)
Define the tenant identifier to be associated with the opened session.
|
SharedSessionBuilder |
transactionContext()
Signifies that the transaction context from the original session should be used to create the new session.
|
public AbstractDelegatingSharedSessionBuilder(SharedSessionBuilder delegate)
public Session openSession()
SessionBuilder
openSession
in interface SessionBuilder
public SharedSessionBuilder interceptor()
SharedSessionBuilder
interceptor
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder connection()
SharedSessionBuilder
connection
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder connectionReleaseMode()
SharedSessionBuilder
connectionReleaseMode
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder autoJoinTransactions()
SharedSessionBuilder
autoJoinTransactions
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder autoClose()
SharedSessionBuilder
autoClose
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder flushBeforeCompletion()
SharedSessionBuilder
flushBeforeCompletion
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder transactionContext()
SharedSessionBuilder
transactionContext
in interface SharedSessionBuilder
this
, for method chainingpublic SharedSessionBuilder interceptor(Interceptor interceptor)
SessionBuilder
interceptor
in interface SessionBuilder
interceptor
in interface SharedSessionBuilder
interceptor
- The interceptor to use.this
, for method chainingpublic SharedSessionBuilder noInterceptor()
SessionBuilder
Interceptor
should be used.
By default the Interceptor
associated with the SessionFactory
is passed to the
Session
whenever we open one without the user having specified a specific interceptor to
use.
Calling SessionBuilder.interceptor(Interceptor)
with null has the same net effect.noInterceptor
in interface SessionBuilder
noInterceptor
in interface SharedSessionBuilder
this
, for method chainingpublic SessionBuilder statementInspector(StatementInspector statementInspector)
SessionBuilder
statementInspector
in interface SessionBuilder
statementInspector
- The StatementInspector to use.this
, for method chainingpublic SharedSessionBuilder connection(Connection connection)
SessionBuilder
connection
in interface SessionBuilder
connection
in interface SharedSessionBuilder
connection
- The connection to use.this
, for method chainingpublic SharedSessionBuilder connectionReleaseMode(ConnectionReleaseMode connectionReleaseMode)
SessionBuilder
connectionReleaseMode
in interface SessionBuilder
connectionReleaseMode
in interface SharedSessionBuilder
connectionReleaseMode
- The connection release mode to use.this
, for method chainingpublic SharedSessionBuilder autoJoinTransactions(boolean autoJoinTransactions)
SessionBuilder
autoJoinTransactions
in interface SessionBuilder
autoJoinTransactions
in interface SharedSessionBuilder
autoJoinTransactions
- Should JTA transactions be automatically joinedthis
, for method chainingpublic SharedSessionBuilder autoClose(boolean autoClose)
SessionBuilder
autoClose
in interface SessionBuilder
autoClose
in interface SharedSessionBuilder
autoClose
- Should the session be automatically closedthis
, for method chainingpublic SharedSessionBuilder flushBeforeCompletion(boolean flushBeforeCompletion)
SessionBuilder
flushBeforeCompletion
in interface SessionBuilder
flushBeforeCompletion
in interface SharedSessionBuilder
flushBeforeCompletion
- Should the session be automatically flushedthis
, for method chainingpublic SessionBuilder tenantIdentifier(String tenantIdentifier)
SessionBuilder
tenantIdentifier
in interface SessionBuilder
tenantIdentifier
- The tenant identifier.this
, for method chainingpublic SessionBuilder eventListeners(SessionEventListener... listeners)
SessionBuilder
eventListeners
in interface SessionBuilder
listeners
- The listeners to incorporate into the built Sessionthis
, for method chainingpublic SessionBuilder clearEventListeners()
SessionBuilder
this
, for method chainingclearEventListeners
in interface SessionBuilder
Copyright © 2016 JBoss by Red Hat. All rights reserved.