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 JPAAttributeConverterinstances as part of the HibernateTypesystem.org.hibernate.type.descriptor.java -
-
Uses of SharedSessionContract in org.hibernate
Subinterfaces of SharedSessionContract in org.hibernate Modifier and Type Interface Description interfaceSessionThe main runtime interface between a Java application and Hibernate.interfaceStatelessSessionA 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 interfaceSessionImplementorDefines the "internal contract" forSessionand other parts of Hibernate such asType,EntityPersisterandCollectionPersisterimplementations.interfaceSharedSessionContractImplementorDefines the internal contract shared betweenSessionandStatelessSessionas used by other parts of Hibernate (such asType,EntityPersisterandCollectionPersisterimplementors A Session, through this interface and SharedSessionContractImplementor, implements:JdbcSessionOwnerto drive the behavior of a "JDBC session".Classes in org.hibernate.engine.spi that implement SharedSessionContract Modifier and Type Class Description classSessionDelegatorBaseImplThis 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 interfaceEventSource -
Uses of SharedSessionContract in org.hibernate.loader
Methods in org.hibernate.loader with parameters of type SharedSessionContract Modifier and Type Method Description voidNaturalIdPostLoadListener. completedLoadByNaturalId(EntityMappingType entityMappingType, Object entity, SharedSessionContract session)Callback for a load-by-natural-id pre eventvoidNaturalIdPreLoadListener. 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 SharedSessionContractQuery. getSession()Get theQueryProducerwhich produced thisQuery, that is, theSessionorStatelessSessionthat was used to create thisQueryinstance. -
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 TAttributeConverterMutabilityPlanImpl. assemble(Serializable cached, SharedSessionContract session)SerializableAttributeConverterMutabilityPlanImpl. 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 BlobBlobJavaType.BlobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)ClobClobJavaType.ClobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)Object[]ComponentArrayMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)TImmutableMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)TMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)Assemble a previously disassembled value.TMutableMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)NClobNClobJavaType.NClobMutabilityPlan. assemble(Serializable cached, SharedSessionContract session)SerializableBlobJavaType.BlobMutabilityPlan. disassemble(Blob value, SharedSessionContract session)SerializableClobJavaType.ClobMutabilityPlan. disassemble(Clob value, SharedSessionContract session)SerializableComponentArrayMutabilityPlan. disassemble(Object[] value, SharedSessionContract session)SerializableImmutableMutabilityPlan. disassemble(T value, SharedSessionContract session)SerializableMutabilityPlan. disassemble(T value, SharedSessionContract session)Return a disassembled representation of the value.SerializableMutableMutabilityPlan. disassemble(T value, SharedSessionContract session)SerializableNClobJavaType.NClobMutabilityPlan. disassemble(NClob value, SharedSessionContract session)
-