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 GetGeneratedKeysDelegate
IdentityColumnSupport. buildGetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect)
The Delegate for dealing with IDENTITY columns using JDBC3 getGeneratedKeysGetGeneratedKeysDelegate
IdentityColumnSupportImpl. buildGetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect)
GetGeneratedKeysDelegate
Oracle12cIdentityColumnSupport. buildGetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect)
GetGeneratedKeysDelegate
SybaseJconnIdentityColumnSupport. buildGetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect)
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. -
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)
Get the generated identifier when using identity columns -
Uses of PostInsertIdentityPersister in org.hibernate.id.insert
Methods in org.hibernate.id.insert that return PostInsertIdentityPersister Modifier and Type Method Description protected PostInsertIdentityPersister
TableInsertReturningBuilder. getMutationTarget()
protected PostInsertIdentityPersister
AbstractReturningDelegate. getPersister()
Constructors in org.hibernate.id.insert with parameters of type PostInsertIdentityPersister Constructor Description AbstractReturningDelegate(PostInsertIdentityPersister persister)
AbstractSelectingDelegate(PostInsertIdentityPersister persister)
BasicSelectingDelegate(PostInsertIdentityPersister persister, Dialect dialect)
GetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect, boolean inferredKeys)
InsertReturningDelegate(PostInsertIdentityPersister persister, Dialect dialect)
SybaseJConnGetGeneratedKeysDelegate(PostInsertIdentityPersister persister, Dialect dialect)
TableInsertReturningBuilder(PostInsertIdentityPersister mutationTarget, SessionFactoryImplementor sessionFactory)
UniqueKeySelectingDelegate(PostInsertIdentityPersister persister, Dialect dialect, String[] uniqueKeyPropertyNames)
-
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.
-