Uses of Interface
org.hibernate.query.QueryProducer
Packages that use QueryProducer
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
Defines the event types and event listener interfaces for
events produced by the stateful
Session
.An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate
.The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
-
Uses of QueryProducer in org.hibernate
Subinterfaces of QueryProducer in org.hibernateModifier and TypeInterfaceDescriptioninterface
The main runtime interface between a Java application and Hibernate.interface
Declares operations that are common betweenSession
andStatelessSession
.interface
A command-oriented API often used for performing bulk operations against the database. -
Uses of QueryProducer in org.hibernate.engine.spi
Subinterfaces of QueryProducer in org.hibernate.engine.spiModifier and TypeInterfaceDescriptioninterface
Defines the "internal contract" betweenSession
and other parts of Hibernate including implementors ofType
,EntityPersister
, andCollectionPersister
.interface
Defines the internal contract shared betweenSession
andStatelessSession
as used by other parts of Hibernate, including implementors ofType
,EntityPersister
, andCollectionPersister
.Classes in org.hibernate.engine.spi that implement QueryProducerModifier and TypeClassDescriptionclass
A wrapper class that delegates all method invocations to a delegate instance ofSessionImplementor
.class
This helper class allows decorating a Session instance, while the instance itself is lazily provided via aSupplier
.class
A wrapper class that delegates all method invocations to a delegate instance ofSharedSessionContractImplementor
. -
Uses of QueryProducer in org.hibernate.envers.internal.entities.mapper.relation.lazy
Classes in org.hibernate.envers.internal.entities.mapper.relation.lazy that implement QueryProducerModifier and TypeClassDescriptionclass
class
-
Uses of QueryProducer in org.hibernate.event.spi
Subinterfaces of QueryProducer in org.hibernate.event.spi -
Uses of QueryProducer in org.hibernate.internal
Classes in org.hibernate.internal that implement QueryProducerModifier and TypeClassDescriptionclass
Base class for implementations ofSharedSessionContract
andSharedSessionContractImplementor
.class
Concrete implementation of theSession
API.class
Concrete implementation of theStatelessSession
API. -
Uses of QueryProducer in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria with parameters of type QueryProducer -
Uses of QueryProducer in org.hibernate.query.spi
Subinterfaces of QueryProducer in org.hibernate.query.spiModifier and TypeInterfaceDescriptioninterface
The internal contract for QueryProducer implementations.