Uses of Interface
org.hibernate.id.insert.InsertGeneratedIdentifierDelegate
-
Packages that use InsertGeneratedIdentifierDelegate Package Description org.hibernate.dialect.identity 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 contains the built-in id generators, all of which implementIdentifierGeneratororPostInsertIdentifierGenerator.org.hibernate.id.insert 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 classOracle12cGetGeneratedKeysDelegateDeprecated, for removal: This API element is subject to removal in a future version.no longer used, useGetGeneratedKeysDelegateinstead -
Uses of InsertGeneratedIdentifierDelegate in org.hibernate.generator
Methods in org.hibernate.generator that return InsertGeneratedIdentifierDelegate Modifier and Type Method Description default InsertGeneratedIdentifierDelegateOnExecutionGenerator. getGeneratedIdentifierDelegate(PostInsertIdentityPersister persister)TheInsertGeneratedIdentifierDelegateused 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 InsertGeneratedIdentifierDelegateIdentityGenerator. 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 classAbstractReturningDelegateAbstractInsertGeneratedIdentifierDelegateimplementation where the underlying strategy causes the generated identifier to be returned as an effect of performing the insert statement.classAbstractSelectingDelegateAbstractInsertGeneratedIdentifierDelegateimplementation 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 withIDENTITYcolumns using the JDBC3 methodStatement.getGeneratedKeys().classInsertReturningDelegateDelegate for dealing withIDENTITYcolumns where the dialect supports returning the generatedIDENTITYvalue directly from the insert statement.classUniqueKeySelectingDelegateUses 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 InsertGeneratedIdentifierDelegateAbstractEntityPersister. 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 InsertGeneratedIdentifierDelegateEntityMutationTarget. getIdentityInsertDelegate()The delegate for executing inserts against the root table for targets defined using post-insert id generation
-