Uses of Interface
org.hibernate.resource.jdbc.spi.StatementInspector
-
Packages that use StatementInspector 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.cfg This package defines APIs for configuring Hibernate.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.testing.jdbc org.hibernate.testing.orm.junit -
-
Uses of StatementInspector in org.hibernate
Methods in org.hibernate with parameters of type StatementInspector Modifier and Type Method Description SessionBuilder
SessionBuilder. statementInspector(StatementInspector statementInspector)
Applies the givenStatementInspector
to the session. -
Uses of StatementInspector in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type StatementInspector Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyStatementInspector(StatementInspector statementInspector)
Specifies aStatementInspector
associated with theSessionFactory
, which will be used by all sessions unless a statement inspector is explicitly specified usingSessionBuilder.statementInspector(org.hibernate.resource.jdbc.spi.StatementInspector)
-
Uses of StatementInspector in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return StatementInspector Modifier and Type Method Description StatementInspector
SessionFactoryOptionsBuilder. getStatementInspector()
Methods in org.hibernate.boot.internal with parameters of type StatementInspector Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilderImpl. applyStatementInspector(StatementInspector statementInspector)
void
SessionFactoryOptionsBuilder. applyStatementInspector(StatementInspector statementInspector)
-
Uses of StatementInspector in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return StatementInspector Modifier and Type Method Description StatementInspector
AbstractDelegatingSessionFactoryOptions. getStatementInspector()
StatementInspector
SessionFactoryOptions. getStatementInspector()
Methods in org.hibernate.boot.spi with parameters of type StatementInspector Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyStatementInspector(StatementInspector statementInspector)
-
Uses of StatementInspector in org.hibernate.cfg
Methods in org.hibernate.cfg that return StatementInspector Modifier and Type Method Description StatementInspector
Configuration. getStatementInspector()
TheStatementInspector
, if any, that was added to this configuration.Methods in org.hibernate.cfg with parameters of type StatementInspector Modifier and Type Method Description Configuration
Configuration. setStatementInspector(StatementInspector statementInspector)
Specify aStatementInspector
to be added to this configuration. -
Uses of StatementInspector in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type StatementInspector Modifier and Type Method Description SessionBuilder
AbstractDelegatingSessionBuilder. statementInspector(StatementInspector statementInspector)
SharedSessionBuilder
AbstractDelegatingSharedSessionBuilder. statementInspector(StatementInspector statementInspector)
-
Uses of StatementInspector in org.hibernate.internal
Methods in org.hibernate.internal that return StatementInspector Modifier and Type Method Description StatementInspector
JdbcSessionContextImpl. getStatementInspector()
StatementInspector
SessionCreationOptions. getStatementInspector()
StatementInspector
SessionFactoryImpl.SessionBuilderImpl. getStatementInspector()
StatementInspector
SessionFactoryImpl.StatelessSessionBuilderImpl. getStatementInspector()
Methods in org.hibernate.internal with parameters of type StatementInspector Modifier and Type Method Description SessionFactoryImpl.SessionBuilderImpl
SessionFactoryImpl.SessionBuilderImpl. statementInspector(StatementInspector statementInspector)
Constructors in org.hibernate.internal with parameters of type StatementInspector Constructor Description JdbcSessionContextImpl(SessionFactoryImplementor sessionFactory, StatementInspector statementInspector, PhysicalConnectionHandlingMode connectionHandlingMode, JdbcServices jdbcServices, BatchBuilder batchBuilder, JdbcObserver jdbcObserver)
-
Uses of StatementInspector in org.hibernate.resource.jdbc.internal
Classes in org.hibernate.resource.jdbc.internal that implement StatementInspector Modifier and Type Class Description class
EmptyStatementInspector
Fields in org.hibernate.resource.jdbc.internal declared as StatementInspector Modifier and Type Field Description static StatementInspector
EmptyStatementInspector. INSTANCE
The singleton reference. -
Uses of StatementInspector in org.hibernate.resource.jdbc.spi
Methods in org.hibernate.resource.jdbc.spi that return StatementInspector Modifier and Type Method Description StatementInspector
JdbcSessionContext. getStatementInspector()
-
Uses of StatementInspector in org.hibernate.testing.jdbc
Classes in org.hibernate.testing.jdbc that implement StatementInspector Modifier and Type Class Description class
SQLStatementInspector
-
Uses of StatementInspector in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit with type parameters of type StatementInspector Modifier and Type Method Description <T extends StatementInspector>
TEntityManagerFactoryScope. getStatementInspector(Class<T> type)
<T extends StatementInspector>
TSessionFactoryScope. getStatementInspector(Class<T> type)
Methods in org.hibernate.testing.orm.junit that return StatementInspector Modifier and Type Method Description StatementInspector
EntityManagerFactoryScope. getStatementInspector()
StatementInspector
SessionFactoryScope. getStatementInspector()
Methods in org.hibernate.testing.orm.junit that return types with arguments of type StatementInspector Modifier and Type Method Description Class<? extends StatementInspector>
statementInspectorClass()
-