Package org.hibernate.internal
Class SessionFactoryImpl.SessionBuilderImpl<T extends SessionBuilder>
- java.lang.Object
-
- org.hibernate.internal.SessionFactoryImpl.SessionBuilderImpl<T>
-
- All Implemented Interfaces:
SessionBuilderImplementor<T>,SessionCreationOptions,SessionBuilder<T>
- Enclosing class:
- SessionFactoryImpl
public static class SessionFactoryImpl.SessionBuilderImpl<T extends SessionBuilder> extends Object implements SessionBuilderImplementor<T>, SessionCreationOptions
-
-
Constructor Summary
Constructors Constructor Description SessionBuilderImpl(SessionFactoryImpl sessionFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TautoClear(boolean autoClear)Should the session be automatically cleared on a failed transaction?TautoClose(boolean autoClose)Should the session be automatically closed after transaction completion?TautoJoinTransactions(boolean autoJoinTransactions)Should the session built automatically join in any ongoing JTA transactions.TclearEventListeners()Remove all listeners intended for the built session currently held here, including any auto-apply ones; in other words, start with a clean slate.Tconnection(Connection connection)Adds a specific connection to the session options.TconnectionHandlingMode(PhysicalConnectionHandlingMode connectionHandlingMode)Signifies that the connection release mode from the original session should be used to create the new session.TeventListeners(SessionEventListener... listeners)Add one or moreSessionEventListenerinstances to the list of listeners for the new session to be built.TflushMode(FlushMode flushMode)Specify the initial FlushMode to use for the opened SessionConnectiongetConnection()List<SessionEventListener>getCustomSessionEventListener()ExceptionMappergetExceptionMapper()FlushModegetInitialSessionFlushMode()InterceptorgetInterceptor()TimeZonegetJdbcTimeZone()PhysicalConnectionHandlingModegetPhysicalConnectionHandlingMode()StatementInspectorgetStatementInspector()StringgetTenantIdentifier()Tinterceptor(Interceptor interceptor)Adds a specific interceptor to the session options.TjdbcTimeZone(TimeZone timeZone)TnoInterceptor()Signifies that noInterceptorshould be used.SessionopenSession()Opens a session with the specified options.booleanshouldAutoClear()booleanshouldAutoClose()booleanshouldAutoJoinTransactions()TstatementInspector(StatementInspector statementInspector)Applies the givenStatementInspectorto the session.TtenantIdentifier(String tenantIdentifier)Define the tenant identifier to be associated with the opened session.
-
-
-
Constructor Detail
-
SessionBuilderImpl
public SessionBuilderImpl(SessionFactoryImpl sessionFactory)
-
-
Method Detail
-
getExceptionMapper
public ExceptionMapper getExceptionMapper()
- Specified by:
getExceptionMapperin interfaceSessionCreationOptions
-
shouldAutoJoinTransactions
public boolean shouldAutoJoinTransactions()
- Specified by:
shouldAutoJoinTransactionsin interfaceSessionCreationOptions
-
getInitialSessionFlushMode
public FlushMode getInitialSessionFlushMode()
- Specified by:
getInitialSessionFlushModein interfaceSessionCreationOptions
-
shouldAutoClose
public boolean shouldAutoClose()
- Specified by:
shouldAutoClosein interfaceSessionCreationOptions
-
shouldAutoClear
public boolean shouldAutoClear()
- Specified by:
shouldAutoClearin interfaceSessionCreationOptions
-
getConnection
public Connection getConnection()
- Specified by:
getConnectionin interfaceSessionCreationOptions
-
getInterceptor
public Interceptor getInterceptor()
- Specified by:
getInterceptorin interfaceSessionCreationOptions
-
getStatementInspector
public StatementInspector getStatementInspector()
- Specified by:
getStatementInspectorin interfaceSessionCreationOptions
-
getPhysicalConnectionHandlingMode
public PhysicalConnectionHandlingMode getPhysicalConnectionHandlingMode()
- Specified by:
getPhysicalConnectionHandlingModein interfaceSessionCreationOptions
-
getTenantIdentifier
public String getTenantIdentifier()
- Specified by:
getTenantIdentifierin interfaceSessionCreationOptions
-
getJdbcTimeZone
public TimeZone getJdbcTimeZone()
- Specified by:
getJdbcTimeZonein interfaceSessionCreationOptions
-
getCustomSessionEventListener
public List<SessionEventListener> getCustomSessionEventListener()
- Specified by:
getCustomSessionEventListenerin interfaceSessionCreationOptions- Returns:
- the full list of SessionEventListener if this was customized, or null if this Session is being created with the default list.
-
openSession
public Session openSession()
Description copied from interface:SessionBuilderOpens a session with the specified options.- Specified by:
openSessionin interfaceSessionBuilder<T extends SessionBuilder>- Returns:
- The session
-
interceptor
public T interceptor(Interceptor interceptor)
Description copied from interface:SessionBuilderAdds a specific interceptor to the session options.- Specified by:
interceptorin interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
interceptor- The interceptor to use.- Returns:
this, for method chaining
-
noInterceptor
public T noInterceptor()
Description copied from interface:SessionBuilderSignifies that noInterceptorshould be used. By default, if noInterceptoris explicitly specified, theInterceptorassociated with theSessionFactoryis inherited by the newSession. CallingSessionBuilder.interceptor(Interceptor)with null has the same effect.- Specified by:
noInterceptorin interfaceSessionBuilder<T extends SessionBuilder>- Returns:
this, for method chaining
-
statementInspector
public T statementInspector(StatementInspector statementInspector)
Description copied from interface:SessionBuilderApplies the givenStatementInspectorto the session.- Specified by:
statementInspectorin interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
statementInspector- The StatementInspector to use.- Returns:
this, for method chaining
-
connection
public T connection(Connection connection)
Description copied from interface:SessionBuilderAdds a specific connection to the session options.- Specified by:
connectionin interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
connection- The connection to use.- Returns:
this, for method chaining
-
connectionHandlingMode
public T connectionHandlingMode(PhysicalConnectionHandlingMode connectionHandlingMode)
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<T extends SessionBuilder>- Parameters:
connectionHandlingMode- The connection handling mode to use.- Returns:
this, for method chaining
-
autoJoinTransactions
public T autoJoinTransactions(boolean autoJoinTransactions)
Description copied from interface:SessionBuilderShould the session built automatically join in any ongoing JTA transactions.- Specified by:
autoJoinTransactionsin interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
autoJoinTransactions- Should JTA transactions be automatically joined- Returns:
this, for method chaining- See Also:
SynchronizationType.SYNCHRONIZED
-
autoClose
public T autoClose(boolean autoClose)
Description copied from interface:SessionBuilderShould the session be automatically closed after transaction completion?- Specified by:
autoClosein interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
autoClose- Should the session be automatically closed- Returns:
this, for method chaining- See Also:
PersistenceContextType
-
autoClear
public T autoClear(boolean autoClear)
Description copied from interface:SessionBuilderShould the session be automatically cleared on a failed transaction?- Specified by:
autoClearin interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
autoClear- Whether the Session should be automatically cleared- Returns:
this, for method chaining
-
flushMode
public T flushMode(FlushMode flushMode)
Description copied from interface:SessionBuilderSpecify the initial FlushMode to use for the opened Session- Specified by:
flushModein interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
flushMode- The initial FlushMode to use for the opened Session- Returns:
this, for method chaining- See Also:
PersistenceContextType
-
tenantIdentifier
public T tenantIdentifier(String tenantIdentifier)
Description copied from interface:SessionBuilderDefine the tenant identifier to be associated with the opened session.- Specified by:
tenantIdentifierin interfaceSessionBuilder<T extends SessionBuilder>- Parameters:
tenantIdentifier- The tenant identifier.- Returns:
this, for method chaining
-
eventListeners
public T 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<T extends SessionBuilder>- Parameters:
listeners- The listeners to incorporate into the built Session- Returns:
this, for method chaining
-
clearEventListeners
public T 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.this, for method chaining- Specified by:
clearEventListenersin interfaceSessionBuilder<T extends SessionBuilder>
-
jdbcTimeZone
public T jdbcTimeZone(TimeZone timeZone)
- Specified by:
jdbcTimeZonein interfaceSessionBuilder<T extends SessionBuilder>
-
-