Package org.hibernate.engine.spi
Interface SessionBuilderImplementor<T extends SessionBuilder>
-
- All Superinterfaces:
SessionBuilder<T>
- All Known Implementing Classes:
AbstractDelegatingSessionBuilderImplementor
public interface SessionBuilderImplementor<T extends SessionBuilder> extends SessionBuilder<T>
Defines the internal contract between the SessionBuilder and other parts of Hibernate..- See Also:
SessionBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description T
owner(SessionOwner sessionOwner)
Deprecated.(since 5.2) since consolidating hibernate-entitymanager into hibernate-core I believe this is no longer needed.-
Methods inherited from interface org.hibernate.SessionBuilder
autoClear, autoClose, autoJoinTransactions, clearEventListeners, connection, connectionHandlingMode, connectionReleaseMode, eventListeners, flushBeforeCompletion, flushMode, interceptor, jdbcTimeZone, noInterceptor, openSession, setQueryParameterValidation, statementInspector, tenantIdentifier
-
-
-
-
Method Detail
-
owner
@Deprecated T owner(SessionOwner sessionOwner)
Deprecated.(since 5.2) since consolidating hibernate-entitymanager into hibernate-core I believe this is no longer needed.Adds the session owner to the session options- Parameters:
sessionOwner
- The session owner.- Returns:
this
, for method chaining
-
-