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 classOracle12cGetGeneratedKeysDelegateDeprecated, for removal: This API element is subject to removal in a future version.no longer used, useGetGeneratedKeysDelegateinstead -
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 PreparedStatementModelMutationHelper. delegateStatementPreparation(PreparableMutationOperation jdbcMutation, GeneratedValuesMutationDelegate delegate, SharedSessionContractImplementor session)static PreparedStatementDetailsModelMutationHelper. standardPreparation(PreparableMutationOperation jdbcMutation, GeneratedValuesMutationDelegate delegate, SharedSessionContractImplementor session)static PreparedStatementGroupModelMutationHelper. 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 classAbstractGeneratedValuesMutationDelegate -
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 GeneratedValuesMutationDelegateGeneratedValuesHelper. getGeneratedValuesDelegate(EntityPersister persister, EventType timing)Creates thedelegateused 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 interfaceInsertGeneratedIdentifierDelegateDeprecated, for removal: This API element is subject to removal in a future version.UseGeneratedValuesMutationDelegateinstead.Classes in org.hibernate.id.insert that implement GeneratedValuesMutationDelegate Modifier and Type Class Description classAbstractReturningDelegateAbstractGeneratedValuesMutationDelegateimplementation where the underlying strategy causes the generated identifier to be returned as an effect of performing the insert statement.classAbstractSelectingDelegateAbstractGeneratedValuesMutationDelegateimplementation where the underlying strategy requires a subsequentselectafter theinsertto determine the generated identifier.classBasicSelectingDelegateDelegate for dealing withIDENTITYcolumns where the dialect requires an additional command execution to retrieve the generatedIDENTITYvalueclassGetGeneratedKeysDelegateDelegate for dealing with generated values using the JDBC3 methodStatement.getGeneratedKeys().classInsertReturningDelegateDelegate for dealing with generated values where the dialect supports returning the generated column directly from the mutation statement.classSybaseJConnGetGeneratedKeysDelegateSpecializedIdentifierGeneratingInsertwhich appends the database specific clause which signifies to return generatedIDENTITYvalues to the end of the insert statement.classUniqueKeySelectingDelegateUses 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 GeneratedValuesMutationDelegateAbstractEntityPersister. createInsertDelegate()protected GeneratedValuesMutationDelegateAbstractEntityPersister. createUpdateDelegate()GeneratedValuesMutationDelegateAbstractEntityPersister. getInsertDelegate()GeneratedValuesMutationDelegateAbstractEntityPersister. 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 GeneratedValuesMutationDelegateEntityMutationTarget. getInsertDelegate()default GeneratedValuesMutationDelegateEntityMutationTarget. getMutationDelegate(MutationType mutationType)GeneratedValuesMutationDelegateEntityMutationTarget. getUpdateDelegate() -
Uses of GeneratedValuesMutationDelegate in org.hibernate.sql.model
Methods in org.hibernate.sql.model that return GeneratedValuesMutationDelegate Modifier and Type Method Description default GeneratedValuesMutationDelegateEntityMutationOperationGroup. getMutationDelegate()
-