Uses of Interface
org.hibernate.id.PostInsertIdentityPersister
Package
Description
Support for
Dialect
-specific identity column handling.This package defines an abstraction over all kinds of automatic
value generation, including id generation and version number
generation.
This package and its subpackages, especially
org.hibernate.id.enhanced
,
contain the built-in id generators, all of which implement either
IdentifierGenerator
or
PostInsertIdentifierGenerator
.Contains a framework of strategies for retrieving database-generated ids.
This package abstracts persistence mechanisms for entities.
-
Uses of PostInsertIdentityPersister in org.hibernate.dialect.identity
Modifier and TypeMethodDescriptiondefault GetGeneratedKeysDelegate
IdentityColumnSupport.buildGetGeneratedKeysDelegate
(PostInsertIdentityPersister persister, Dialect dialect) Deprecated, for removal: This API element is subject to removal in a future version.ModifierConstructorDescriptionOracle12cGetGeneratedKeysDelegate
(PostInsertIdentityPersister persister, Dialect dialect) Deprecated, for removal: This API element is subject to removal in a future version.UseOracle12cGetGeneratedKeysDelegate(EntityPersister)
instead. -
Uses of PostInsertIdentityPersister in org.hibernate.generator
Modifier and TypeMethodDescriptionOnExecutionGenerator.getGeneratedIdentifierDelegate
(PostInsertIdentityPersister persister) TheInsertGeneratedIdentifierDelegate
used to retrieve the generated value if this object is an identifier generator. -
Uses of PostInsertIdentityPersister in org.hibernate.id
Modifier and TypeMethodDescriptionIdentityGenerator.getGeneratedIdentifierDelegate
(PostInsertIdentityPersister persister) static Object
IdentifierGeneratorHelper.getGeneratedIdentity
(String path, ResultSet resultSet, PostInsertIdentityPersister persister, WrapperOptions wrapperOptions) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of PostInsertIdentityPersister in org.hibernate.id.insert
ModifierConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.protected
Deprecated, for removal: This API element is subject to removal in a future version.BasicSelectingDelegate
(PostInsertIdentityPersister persister, Dialect dialect) Deprecated, for removal: This API element is subject to removal in a future version.UseBasicSelectingDelegate(EntityPersister)
instead.GetGeneratedKeysDelegate
(PostInsertIdentityPersister persister, Dialect dialect, boolean inferredKeys) Deprecated, for removal: This API element is subject to removal in a future version.InsertReturningDelegate
(PostInsertIdentityPersister persister, Dialect dialect) Deprecated, for removal: This API element is subject to removal in a future version.UseInsertReturningDelegate(EntityPersister, EventType)
instead.SybaseJConnGetGeneratedKeysDelegate
(PostInsertIdentityPersister persister, Dialect dialect) Deprecated, for removal: This API element is subject to removal in a future version.UseSybaseJConnGetGeneratedKeysDelegate(EntityPersister)
instead.TableInsertReturningBuilder
(PostInsertIdentityPersister mutationTarget, SessionFactoryImplementor sessionFactory) Deprecated, for removal: This API element is subject to removal in a future version.UniqueKeySelectingDelegate
(PostInsertIdentityPersister persister, Dialect dialect, String[] uniqueKeyPropertyNames) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of PostInsertIdentityPersister in org.hibernate.persister.entity
Modifier and TypeClassDescriptionclass
Basic functionality for persisting an entity via JDBC, using either generated or custom SQL.class
AnEntityPersister
implementing the normalizedInheritanceType.JOINED
inheritance mapping strategy for an entity and its inheritance hierarchy.class
The default implementation of theEntityPersister
interface.class
AnEntityPersister
implementing theInheritanceType.TABLE_PER_CLASS
mapping strategy for an entity and its inheritance hierarchy.
IdentityColumnSupport.buildGetGeneratedKeysDelegate(EntityPersister)
instead.