Uses of Interface
org.hibernate.generator.values.GeneratedValuesMutationDelegate
-
Packages that use GeneratedValuesMutationDelegate Package Description org.hibernate.dialect.identity Support forDialect
-specific identity column handling.org.hibernate.engine.jdbc.mutation.internal org.hibernate.generator.values Contains a framework of strategies for efficient retrieval of database-generated values.org.hibernate.generator.values.internal 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.org.hibernate.sql.model Package contains specialized SQL AST nodes and builders for table mutations of model parts originating from normal persistence-context events. -
-
Uses of GeneratedValuesMutationDelegate in org.hibernate.dialect.identity
Classes in org.hibernate.dialect.identity that implement GeneratedValuesMutationDelegate 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 GeneratedValuesMutationDelegate in org.hibernate.engine.jdbc.mutation.internal
Methods in org.hibernate.engine.jdbc.mutation.internal with parameters of type GeneratedValuesMutationDelegate Modifier and Type Method Description static PreparedStatement
ModelMutationHelper. delegateStatementPreparation(PreparableMutationOperation jdbcMutation, GeneratedValuesMutationDelegate delegate, SharedSessionContractImplementor session)
static PreparedStatementDetails
ModelMutationHelper. standardPreparation(PreparableMutationOperation jdbcMutation, GeneratedValuesMutationDelegate delegate, SharedSessionContractImplementor session)
static PreparedStatementGroup
ModelMutationHelper. toPreparedStatementGroup(MutationType mutationType, MutationTarget<?> mutationTarget, GeneratedValuesMutationDelegate delegate, List<PreparableMutationOperation> mutations, SharedSessionContractImplementor session)
Constructors in org.hibernate.engine.jdbc.mutation.internal with parameters of type GeneratedValuesMutationDelegate Constructor Description MutationExecutorSingleNonBatched(PreparableMutationOperation mutationOperation, GeneratedValuesMutationDelegate generatedValuesDelegate, SharedSessionContractImplementor session)
PreparedStatementGroupSingleTable(PreparableMutationOperation jdbcMutation, GeneratedValuesMutationDelegate delegate, SharedSessionContractImplementor session)
PreparedStatementGroupStandard(MutationType mutationType, MutationTarget<?> mutationTarget, GeneratedValuesMutationDelegate generatedValuesDelegate, List<PreparableMutationOperation> jdbcMutations, SharedSessionContractImplementor session)
-
Uses of GeneratedValuesMutationDelegate in org.hibernate.generator.values
Classes in org.hibernate.generator.values that implement GeneratedValuesMutationDelegate Modifier and Type Class Description class
AbstractGeneratedValuesMutationDelegate
-
Uses of GeneratedValuesMutationDelegate in org.hibernate.generator.values.internal
Methods in org.hibernate.generator.values.internal that return GeneratedValuesMutationDelegate Modifier and Type Method Description static GeneratedValuesMutationDelegate
GeneratedValuesHelper. getGeneratedValuesDelegate(EntityPersister persister, EventType timing)
Creates thedelegate
used to retrieve database generated values on mutation execution through e.g. -
Uses of GeneratedValuesMutationDelegate in org.hibernate.id.insert
Subinterfaces of GeneratedValuesMutationDelegate in org.hibernate.id.insert Modifier and Type Interface Description interface
InsertGeneratedIdentifierDelegate
Deprecated, for removal: This API element is subject to removal in a future version.UseGeneratedValuesMutationDelegate
instead.Classes in org.hibernate.id.insert that implement GeneratedValuesMutationDelegate Modifier and Type Class Description class
AbstractReturningDelegate
AbstractGeneratedValuesMutationDelegate
implementation where the underlying strategy causes the generated identifier to be returned as an effect of performing the insert statement.class
AbstractSelectingDelegate
AbstractGeneratedValuesMutationDelegate
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 with generated values using the JDBC3 methodStatement.getGeneratedKeys()
.class
InsertReturningDelegate
Delegate for dealing with generated values where the dialect supports returning the generated column directly from the mutation 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 GeneratedValuesMutationDelegate in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return GeneratedValuesMutationDelegate Modifier and Type Method Description protected GeneratedValuesMutationDelegate
AbstractEntityPersister. createInsertDelegate()
protected GeneratedValuesMutationDelegate
AbstractEntityPersister. createUpdateDelegate()
GeneratedValuesMutationDelegate
AbstractEntityPersister. getInsertDelegate()
GeneratedValuesMutationDelegate
AbstractEntityPersister. getUpdateDelegate()
-
Uses of GeneratedValuesMutationDelegate in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation that return GeneratedValuesMutationDelegate Modifier and Type Method Description GeneratedValuesMutationDelegate
EntityMutationTarget. getInsertDelegate()
default GeneratedValuesMutationDelegate
EntityMutationTarget. getMutationDelegate(MutationType mutationType)
GeneratedValuesMutationDelegate
EntityMutationTarget. getUpdateDelegate()
-
Uses of GeneratedValuesMutationDelegate in org.hibernate.sql.model
Methods in org.hibernate.sql.model that return GeneratedValuesMutationDelegate Modifier and Type Method Description default GeneratedValuesMutationDelegate
EntityMutationOperationGroup. getMutationDelegate()
-