Uses of Interface
org.hibernate.id.insert.InsertGeneratedIdentifierDelegate
-
Packages that use InsertGeneratedIdentifierDelegate 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.org.hibernate.persister.entity.mutation Defines support for performing mutation operations originating from persistence-context events. -
-
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.dialect.identity
Classes in org.hibernate.dialect.identity that implement InsertGeneratedIdentifierDelegate Modifier and Type Class Description class
Oracle12cGetGeneratedKeysDelegate
Deprecated, for removal: This API element is subject to removal in a future version.no longer used, useGetGeneratedKeysDelegate
instead -
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.generator
Methods in org.hibernate.generator that return InsertGeneratedIdentifierDelegate 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 InsertGeneratedIdentifierDelegate in org.hibernate.id
Methods in org.hibernate.id that return InsertGeneratedIdentifierDelegate Modifier and Type Method Description InsertGeneratedIdentifierDelegate
IdentityGenerator. getGeneratedIdentifierDelegate(PostInsertIdentityPersister persister)
-
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.id.insert
Classes in org.hibernate.id.insert that implement InsertGeneratedIdentifierDelegate Modifier and Type Class Description class
AbstractReturningDelegate
AbstractInsertGeneratedIdentifierDelegate
implementation where the underlying strategy causes the generated identifier to be returned as an effect of performing the insert statement.class
AbstractSelectingDelegate
AbstractInsertGeneratedIdentifierDelegate
implementation where the underlying strategy requires a subsequentselect
after theinsert
to determine the generated identifier.class
BasicSelectingDelegate
Delegate for dealing withIDENTITY
columns where the dialect requires an additional command execution to retrieve the generatedIDENTITY
valueclass
GetGeneratedKeysDelegate
Delegate for dealing withIDENTITY
columns using the JDBC3 methodStatement.getGeneratedKeys()
.class
InsertReturningDelegate
Delegate for dealing withIDENTITY
columns where the dialect supports returning the generatedIDENTITY
value directly from the insert statement.class
SybaseJConnGetGeneratedKeysDelegate
SpecializedIdentifierGeneratingInsert
which appends the database specific clause which signifies to return generatedIDENTITY
values to the end of the insert statement.class
UniqueKeySelectingDelegate
Uses a unique key of the inserted entity to locate the newly inserted row. -
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return InsertGeneratedIdentifierDelegate Modifier and Type Method Description InsertGeneratedIdentifierDelegate
AbstractEntityPersister. getIdentityInsertDelegate()
-
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation that return InsertGeneratedIdentifierDelegate Modifier and Type Method Description InsertGeneratedIdentifierDelegate
EntityMutationTarget. getIdentityInsertDelegate()
The delegate for executing inserts against the root table for targets defined using post-insert id generation
-