Uses of Interface
org.hibernate.SharedSessionContract
-
Packages that use SharedSessionContract 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.model.process.internal org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.envers.internal.entities.mapper.relation.lazy org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession
.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.metamodel.mapping.internal org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.type.descriptor.converter.internal Implements the SPI for basic-typed value conversions.org.hibernate.type.descriptor.java Integrates a range of types defined by the JDK with the type system of Hibernate.org.hibernate.type.descriptor.java.spi org.hibernate.type.internal -
-
Uses of SharedSessionContract in org.hibernate
Subinterfaces of SharedSessionContract in org.hibernate Modifier and Type Interface Description interface
Session
The main runtime interface between a Java application and Hibernate.interface
StatelessSession
A command-oriented API often used for performing bulk operations against the database. -
Uses of SharedSessionContract in org.hibernate.boot.model.process.internal
Methods in org.hibernate.boot.model.process.internal with parameters of type SharedSessionContract Modifier and Type Method Description T
UserTypeMutabilityPlanAdapter. assemble(Serializable cached, SharedSessionContract session)
Serializable
UserTypeMutabilityPlanAdapter. disassemble(T value, SharedSessionContract session)
-
Uses of SharedSessionContract in org.hibernate.engine.spi
Subinterfaces of SharedSessionContract in org.hibernate.engine.spi Modifier and Type Interface Description interface
SessionImplementor
Defines the "internal contract" betweenSession
and other parts of Hibernate including implementors ofType
,EntityPersister
, andCollectionPersister
.interface
SharedSessionContractImplementor
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 SharedSessionContract Modifier and Type Class Description class
SessionDelegatorBaseImpl
A wrapper class that delegates all method invocations to a delegate instance ofSessionImplementor
.class
SessionLazyDelegator
This helper class allows decorating a Session instance, while the instance itself is lazily provided via aSupplier
.class
SharedSessionDelegatorBaseImpl
A wrapper class that delegates all method invocations to a delegate instance ofSharedSessionContractImplementor
.Methods in org.hibernate.engine.spi that return SharedSessionContract Modifier and Type Method Description protected SharedSessionContract
SharedSessionDelegatorBaseImpl. delegate()
Returns the delegate session. -
Uses of SharedSessionContract in org.hibernate.envers.internal.entities.mapper.relation.lazy
Classes in org.hibernate.envers.internal.entities.mapper.relation.lazy that implement SharedSessionContract Modifier and Type Class Description class
AbstractDelegateSessionImplementor
class
ToOneDelegateSessionImplementor
-
Uses of SharedSessionContract in org.hibernate.event.spi
Subinterfaces of SharedSessionContract in org.hibernate.event.spi Modifier and Type Interface Description interface
EventSource
-
Uses of SharedSessionContract in org.hibernate.internal
Classes in org.hibernate.internal that implement SharedSessionContract Modifier and Type Class Description class
AbstractSharedSessionContract
Base class for implementations ofSharedSessionContract
andSharedSessionContractImplementor
.class
SessionImpl
Concrete implementation of theSession
API.class
StatelessSessionImpl
Concrete implementation of theStatelessSession
API. -
Uses of SharedSessionContract in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal with parameters of type SharedSessionContract Modifier and Type Method Description Object
DiscriminatedAssociationAttributeMapping.MutabilityPlanImpl. assemble(Serializable cached, SharedSessionContract session)
Serializable
DiscriminatedAssociationAttributeMapping.MutabilityPlanImpl. disassemble(Object value, SharedSessionContract session)
-
Uses of SharedSessionContract in org.hibernate.query
Methods in org.hibernate.query that return SharedSessionContract Modifier and Type Method Description SharedSessionContract
Query. getSession()
Get theQueryProducer
which produced thisQuery
, that is, theSession
orStatelessSession
that was used to create thisQuery
instance. -
Uses of SharedSessionContract in org.hibernate.type.descriptor.converter.internal
Methods in org.hibernate.type.descriptor.converter.internal with parameters of type SharedSessionContract Modifier and Type Method Description T
AttributeConverterMutabilityPlanImpl. assemble(Serializable cached, SharedSessionContract session)
Serializable
AttributeConverterMutabilityPlanImpl. disassemble(T value, SharedSessionContract session)
-
Uses of SharedSessionContract in org.hibernate.type.descriptor.java
Methods in org.hibernate.type.descriptor.java with parameters of type SharedSessionContract Modifier and Type Method Description Blob
BlobJavaType.BlobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Clob
ClobJavaType.ClobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Object
Immutability. assemble(Serializable cached, SharedSessionContract session)
T
ImmutableMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
T
MutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Assemble a previously disassembled value.T
MutableMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
NClob
NClobJavaType.NClobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Serializable
BlobJavaType.BlobMutabilityPlan. disassemble(Blob value, SharedSessionContract session)
Serializable
ClobJavaType.ClobMutabilityPlan. disassemble(Clob value, SharedSessionContract session)
Serializable
Immutability. disassemble(Object value, SharedSessionContract session)
Serializable
ImmutableMutabilityPlan. disassemble(T value, SharedSessionContract session)
Serializable
MutabilityPlan. disassemble(T value, SharedSessionContract session)
Return a disassembled representation of the value.Serializable
MutableMutabilityPlan. disassemble(T value, SharedSessionContract session)
Serializable
NClobJavaType.NClobMutabilityPlan. disassemble(NClob value, SharedSessionContract session)
-
Uses of SharedSessionContract in org.hibernate.type.descriptor.java.spi
Methods in org.hibernate.type.descriptor.java.spi with parameters of type SharedSessionContract Modifier and Type Method Description T
FormatMapperBasedJavaType. assemble(Serializable cached, SharedSessionContract session)
Serializable
FormatMapperBasedJavaType. disassemble(T value, SharedSessionContract session)
-
Uses of SharedSessionContract in org.hibernate.type.internal
Methods in org.hibernate.type.internal with parameters of type SharedSessionContract Modifier and Type Method Description J
CompositeUserTypeJavaTypeWrapper.MutabilityPlanWrapper. assemble(Serializable cached, SharedSessionContract session)
J
UserTypeJavaTypeWrapper.MutabilityPlanWrapper. assemble(Serializable cached, SharedSessionContract session)
Serializable
CompositeUserTypeJavaTypeWrapper.MutabilityPlanWrapper. disassemble(J value, SharedSessionContract session)
Serializable
UserTypeJavaTypeWrapper.MutabilityPlanWrapper. disassemble(J value, SharedSessionContract session)
-