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 eitherIdentifierGeneratororPostInsertIdentifierGenerator.org.hibernate.id.insert Contains a framework of strategies for retrieving database-generated ids.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 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 InsertGeneratedIdentifierDelegate in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation that return InsertGeneratedIdentifierDelegate Modifier and Type Method Description default InsertGeneratedIdentifierDelegateEntityMutationTarget. getIdentityInsertDelegate()Deprecated, for removal: This API element is subject to removal in a future version.useEntityMutationTarget.getInsertDelegate()instead
-