Uses of Interface
org.hibernate.id.insert.InsertGeneratedIdentifierDelegate
Packages that use InsertGeneratedIdentifierDelegate
Package
Description
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.
Defines support for performing mutation operations originating
from persistence-context events.
-
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.generator
Methods in org.hibernate.generator that return InsertGeneratedIdentifierDelegateModifier and TypeMethodDescriptionOnExecutionGenerator.getGeneratedIdentifierDelegate
(EntityPersister 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 InsertGeneratedIdentifierDelegateModifier and TypeMethodDescriptionIdentityGenerator.getGeneratedIdentifierDelegate
(EntityPersister persister) NativeGenerator.getGeneratedIdentifierDelegate
(EntityPersister persister) -
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.id.insert
Classes in org.hibernate.id.insert that implement InsertGeneratedIdentifierDelegateModifier and TypeClassDescriptionclass
AbstractGeneratedValuesMutationDelegate
implementation where the underlying strategy causes the generated identifier to be returned as an effect of performing the insert statement.class
AbstractGeneratedValuesMutationDelegate
implementation where the underlying strategy requires a subsequentselect
after theinsert
to determine the generated identifier.class
Delegate for dealing withIDENTITY
columns where the dialect requires an additional command execution to retrieve the generatedIDENTITY
valueclass
Delegate for dealing with generated values using the JDBC3 methodStatement.getGeneratedKeys()
.class
Delegate for dealing with generated values where the dialect supports returning the generated column directly from the mutation statement.class
SpecializedGetGeneratedKeysDelegate
which appends the database specific clause which signifies to return generatedIDENTITY
values to the end of the insert statement.class
Uses a unique key of the inserted entity to locate the newly inserted row. -
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation that return InsertGeneratedIdentifierDelegateModifier and TypeMethodDescriptionEntityMutationTarget.getIdentityInsertDelegate()
Deprecated, for removal: This API element is subject to removal in a future version.
EntityMutationTarget.getInsertDelegate()
instead