Uses of Interface
org.hibernate.id.PostInsertIdentityPersister
-
Packages that use PostInsertIdentityPersister Package Description org.hibernate.dialect.identity Support forDialect
-specific identity column handling.org.hibernate.generator This package defines an abstraction over all kinds of automatic value generation, including id generation and version number generation.org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.id.insert Contains a framework of strategies for retrieving database-generated ids.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities. -
-
Uses of PostInsertIdentityPersister in org.hibernate.dialect.identity
Methods in org.hibernate.dialect.identity with parameters of type PostInsertIdentityPersister Modifier and Type Method Description default GetGeneratedKeysDelegate
IdentityColumnSupport. buildGetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect)
Deprecated, for removal: This API element is subject to removal in a future version.Constructors in org.hibernate.dialect.identity with parameters of type PostInsertIdentityPersister Constructor Description Oracle12cGetGeneratedKeysDelegate(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
Methods in org.hibernate.generator with parameters of type PostInsertIdentityPersister Modifier and Type Method Description default InsertGeneratedIdentifierDelegate
OnExecutionGenerator. getGeneratedIdentifierDelegate(PostInsertIdentityPersister persister)
TheInsertGeneratedIdentifierDelegate
used to retrieve the generated value if this object is an identifier generator. -
Uses of PostInsertIdentityPersister in org.hibernate.id
Methods in org.hibernate.id with parameters of type PostInsertIdentityPersister Modifier and Type Method Description InsertGeneratedIdentifierDelegate
IdentityGenerator. 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
Constructors in org.hibernate.id.insert with parameters of type PostInsertIdentityPersister Constructor Description AbstractReturningDelegate(PostInsertIdentityPersister persister)
Deprecated, for removal: This API element is subject to removal in a future version.AbstractSelectingDelegate(PostInsertIdentityPersister persister)
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
Classes in org.hibernate.persister.entity that implement PostInsertIdentityPersister Modifier and Type Class Description class
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC, using either generated or custom SQL.class
JoinedSubclassEntityPersister
AnEntityPersister
implementing the normalizedInheritanceType.JOINED
inheritance mapping strategy for an entity and its inheritance hierarchy.class
SingleTableEntityPersister
The default implementation of theEntityPersister
interface.class
UnionSubclassEntityPersister
AnEntityPersister
implementing theInheritanceType.TABLE_PER_CLASS
mapping strategy for an entity and its inheritance hierarchy.
-