Uses of Interface
org.hibernate.SessionBuilder
-
Packages that use SessionBuilder Package Description org.hibernate org.hibernate.context.spi SPI level contracts around "current session" support.org.hibernate.engine.spi org.hibernate.testing.transaction -
-
Uses of SessionBuilder in org.hibernate
Classes in org.hibernate with type parameters of type SessionBuilder Modifier and Type Interface Description interface
SessionBuilder<T extends SessionBuilder>
Represents a consolidation of all session creation options into a builder style delegate.Subinterfaces of SessionBuilder in org.hibernate Modifier and Type Interface Description interface
SharedSessionBuilder<T extends SharedSessionBuilder>
SpecializedSessionBuilder
with access to stuff from another session.Methods in org.hibernate that return SessionBuilder Modifier and Type Method Description SessionBuilder
SessionFactory. withOptions()
Obtain aSession
builder. -
Uses of SessionBuilder in org.hibernate.context.spi
Methods in org.hibernate.context.spi that return SessionBuilder Modifier and Type Method Description protected SessionBuilder
AbstractCurrentSessionContext. baseSessionBuilder()
-
Uses of SessionBuilder in org.hibernate.engine.spi
Classes in org.hibernate.engine.spi with type parameters of type SessionBuilder Modifier and Type Class Description class
AbstractDelegatingSessionBuilder<T extends SessionBuilder>
Base class forSessionBuilder
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.interface
SessionBuilderImplementor<T extends SessionBuilder>
Defines the internal contract between the SessionBuilder and other parts of Hibernate..Subinterfaces of SessionBuilder in org.hibernate.engine.spi Modifier and Type Interface Description interface
SessionBuilderImplementor<T extends SessionBuilder>
Defines the internal contract between the SessionBuilder and other parts of Hibernate..Classes in org.hibernate.engine.spi that implement SessionBuilder Modifier and Type Class Description class
AbstractDelegatingSessionBuilder<T extends SessionBuilder>
Base class forSessionBuilder
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.class
AbstractDelegatingSessionBuilderImplementor<T extends SessionBuilderImplementor>
Base class forSessionBuilderImplementor
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.class
AbstractDelegatingSharedSessionBuilder<T extends SharedSessionBuilder>
Base class forSharedSessionBuilder
implementations that wish to implement only parts of that contract themselves while forwarding other method invocations to a delegate instance.Methods in org.hibernate.engine.spi that return SessionBuilder Modifier and Type Method Description protected SessionBuilder
AbstractDelegatingSessionBuilder. delegate()
Constructors in org.hibernate.engine.spi with parameters of type SessionBuilder Constructor Description AbstractDelegatingSessionBuilder(SessionBuilder delegate)
-
Uses of SessionBuilder in org.hibernate.testing.transaction
Method parameters in org.hibernate.testing.transaction with type arguments of type SessionBuilder Modifier and Type Method Description static void
TransactionUtil. doInHibernateSessionBuilder(java.util.function.Supplier<SessionBuilder> sessionBuilderSupplier, TransactionUtil.HibernateTransactionConsumer function)
Execute function in a Hibernate transaction without return valuestatic <T> T
TransactionUtil. doInHibernateSessionBuilder(java.util.function.Supplier<SessionBuilder> sessionBuilderSupplier, TransactionUtil.HibernateTransactionFunction<T> function)
Execute function in a Hibernate transaction
-