Uses of Class
org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode
-
Packages that use PhysicalConnectionHandlingMode Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.context.internal Internal implementations and support around "current session" handling.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.resource.jdbc.internal Implementation of the SPI for managing JDBC connections and other heavyweight resources.org.hibernate.resource.jdbc.spi An SPI for managing JDBC connections and other heavyweight resources, based around the idea of a "JDBC session".org.hibernate.resource.transaction.backend.jdbc.internal An implementation ofTransactionCoordinator
based onJdbcResourceTransaction
.org.hibernate.resource.transaction.backend.jta.internal org.hibernate.resource.transaction.spi Extended SPI contracts for the resource-level transaction capabilities of Hibernate.org.hibernate.testing.jta -
-
Uses of PhysicalConnectionHandlingMode in org.hibernate
Methods in org.hibernate with parameters of type PhysicalConnectionHandlingMode Modifier and Type Method Description SessionBuilder
SessionBuilder. connectionHandlingMode(PhysicalConnectionHandlingMode mode)
Signifies that the connection release mode from the original session should be used to create the new session. -
Uses of PhysicalConnectionHandlingMode in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type PhysicalConnectionHandlingMode Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyConnectionHandlingMode(PhysicalConnectionHandlingMode connectionHandlingMode)
Specifies the connection handling mode for JDBC connections. -
Uses of PhysicalConnectionHandlingMode in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
SessionFactoryOptionsBuilder. getPhysicalConnectionHandlingMode()
Methods in org.hibernate.boot.internal with parameters of type PhysicalConnectionHandlingMode Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilderImpl. applyConnectionHandlingMode(PhysicalConnectionHandlingMode connectionHandlingMode)
void
SessionFactoryOptionsBuilder. applyConnectionHandlingMode(PhysicalConnectionHandlingMode mode)
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
AbstractDelegatingSessionFactoryOptions. getPhysicalConnectionHandlingMode()
PhysicalConnectionHandlingMode
SessionFactoryOptions. getPhysicalConnectionHandlingMode()
Methods in org.hibernate.boot.spi with parameters of type PhysicalConnectionHandlingMode Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyConnectionHandlingMode(PhysicalConnectionHandlingMode connectionHandlingMode)
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.context.internal
Methods in org.hibernate.context.internal that return PhysicalConnectionHandlingMode Modifier and Type Method Description protected PhysicalConnectionHandlingMode
JTASessionContext. getConnectionHandlingMode()
Mainly for subclass usage.protected PhysicalConnectionHandlingMode
ThreadLocalSessionContext. getConnectionHandlingMode()
Mainly for subclass usage. -
Uses of PhysicalConnectionHandlingMode in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type PhysicalConnectionHandlingMode Modifier and Type Method Description SessionBuilder
AbstractDelegatingSessionBuilder. connectionHandlingMode(PhysicalConnectionHandlingMode mode)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. connectionHandlingMode(PhysicalConnectionHandlingMode mode)
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.internal
Methods in org.hibernate.internal that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
JdbcSessionContextImpl. getPhysicalConnectionHandlingMode()
PhysicalConnectionHandlingMode
SessionCreationOptions. getPhysicalConnectionHandlingMode()
PhysicalConnectionHandlingMode
SessionFactoryImpl.SessionBuilderImpl. getPhysicalConnectionHandlingMode()
PhysicalConnectionHandlingMode
SessionFactoryImpl.StatelessSessionBuilderImpl. getPhysicalConnectionHandlingMode()
Methods in org.hibernate.internal with parameters of type PhysicalConnectionHandlingMode Modifier and Type Method Description SessionFactoryImpl.SessionBuilderImpl
SessionFactoryImpl.SessionBuilderImpl. connectionHandlingMode(PhysicalConnectionHandlingMode connectionHandlingMode)
Constructors in org.hibernate.internal with parameters of type PhysicalConnectionHandlingMode Constructor Description JdbcSessionContextImpl(SessionFactoryImplementor sessionFactory, StatementInspector statementInspector, PhysicalConnectionHandlingMode connectionHandlingMode, JdbcServices jdbcServices, BatchBuilder batchBuilder, JdbcObserver jdbcObserver)
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.resource.jdbc.internal
Methods in org.hibernate.resource.jdbc.internal that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
LogicalConnectionManagedImpl. getConnectionHandlingMode()
PhysicalConnectionHandlingMode
LogicalConnectionProvidedImpl. getConnectionHandlingMode()
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.resource.jdbc.spi
Methods in org.hibernate.resource.jdbc.spi that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
LogicalConnectionImplementor. getConnectionHandlingMode()
PhysicalConnectionHandlingMode
JdbcSessionContext. getPhysicalConnectionHandlingMode()
static PhysicalConnectionHandlingMode
PhysicalConnectionHandlingMode. interpret(Object setting)
static PhysicalConnectionHandlingMode
PhysicalConnectionHandlingMode. interpret(ConnectionAcquisitionMode acquisitionMode, ConnectionReleaseMode releaseMode)
static PhysicalConnectionHandlingMode
PhysicalConnectionHandlingMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static PhysicalConnectionHandlingMode[]
PhysicalConnectionHandlingMode. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of PhysicalConnectionHandlingMode in org.hibernate.resource.transaction.backend.jdbc.internal
Methods in org.hibernate.resource.transaction.backend.jdbc.internal that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
JdbcResourceLocalTransactionCoordinatorBuilderImpl. getDefaultConnectionHandlingMode()
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.resource.transaction.backend.jta.internal
Methods in org.hibernate.resource.transaction.backend.jta.internal that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
JtaTransactionCoordinatorBuilderImpl. getDefaultConnectionHandlingMode()
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.resource.transaction.spi
Methods in org.hibernate.resource.transaction.spi that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
TransactionCoordinatorBuilder. getDefaultConnectionHandlingMode()
-
Uses of PhysicalConnectionHandlingMode in org.hibernate.testing.jta
Methods in org.hibernate.testing.jta that return PhysicalConnectionHandlingMode Modifier and Type Method Description PhysicalConnectionHandlingMode
TestingJtaTransactionCoordinatorBuilder. getDefaultConnectionHandlingMode()
-