Uses of Interface
org.hibernate.SharedSessionContract
-
Packages that use SharedSessionContract Package Description org.hibernate org.hibernate.engine.spi org.hibernate.event.spi org.hibernate.loader org.hibernate.query org.hibernate.type.descriptor.converter Support for handling JPAAttributeConverter
instances as part of the HibernateType
system.org.hibernate.type.descriptor.java -
-
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 for performing bulk operations against a database. -
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" forSession
and other parts of Hibernate such asType
,EntityPersister
andCollectionPersister
implementations.interface
SharedSessionContractImplementor
Defines the internal contract shared betweenSession
andStatelessSession
as used by other parts of Hibernate (such asType
,EntityPersister
andCollectionPersister
implementors A Session, through this interface and SharedSessionContractImplementor, implements:JdbcSessionOwner
to drive the behavior of a "JDBC session".Classes in org.hibernate.engine.spi that implement SharedSessionContract Modifier and Type Class Description class
SessionDelegatorBaseImpl
This class is meant to be extended. -
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.loader
Methods in org.hibernate.loader with parameters of type SharedSessionContract Modifier and Type Method Description void
NaturalIdPostLoadListener. completedLoadByNaturalId(EntityMappingType entityMappingType, Object entity, SharedSessionContract session)
Callback for a load-by-natural-id pre eventvoid
NaturalIdPreLoadListener. startingLoadByNaturalId(EntityMappingType loadingEntity, Object naturalId, SharedSessionContract session)
Callback for a load-by-natural-id pre event -
Uses of SharedSessionContract in org.hibernate.query
Methods in org.hibernate.query that return SharedSessionContract Modifier and Type Method Description SharedSessionContract
Query. getSession()
Get the QueryProducer this Query originates from. -
Uses of SharedSessionContract in org.hibernate.type.descriptor.converter
Methods in org.hibernate.type.descriptor.converter 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
BlobJavaTypeDescriptor.BlobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Clob
ClobJavaTypeDescriptor.ClobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Object[]
ComponentArrayMutabilityPlan. 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
NClobJavaTypeDescriptor.NClobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)
Serializable
BlobJavaTypeDescriptor.BlobMutabilityPlan. disassemble(Blob value, SharedSessionContract session)
Serializable
ClobJavaTypeDescriptor.ClobMutabilityPlan. disassemble(Clob value, SharedSessionContract session)
Serializable
ComponentArrayMutabilityPlan. 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
NClobJavaTypeDescriptor.NClobMutabilityPlan. disassemble(NClob value, SharedSessionContract session)
-