Package org.hibernate.id.insert
Interface InsertGeneratedIdentifierDelegate
-
- All Known Implementing Classes:
AbstractReturningDelegate
,AbstractSelectingDelegate
,GetGeneratedKeysDelegate
,IdentityGenerator.BasicDelegate
,IdentityGenerator.InsertSelectDelegate
,Oracle12cGetGeneratedKeysDelegate
,SelectGenerator.SelectGeneratorDelegate
,SequenceIdentityGenerator.Delegate
public interface InsertGeneratedIdentifierDelegate
Responsible for handling delegation relating to variants in how insert-generated-identifier generator strategies dictate processing:- building the sql insert statement
- determination of the generated identifier value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.Serializable
performInsert(java.lang.String insertSQL, SharedSessionContractImplementor session, Binder binder)
Perform the indicated insert SQL statement and determine the identifier value generated.IdentifierGeneratingInsert
prepareIdentifierGeneratingInsert()
Build aInsert
specific to the delegate's mode of handling generated key values.
-
-
-
Method Detail
-
prepareIdentifierGeneratingInsert
IdentifierGeneratingInsert prepareIdentifierGeneratingInsert()
Build aInsert
specific to the delegate's mode of handling generated key values.- Returns:
- The insert object.
-
performInsert
java.io.Serializable performInsert(java.lang.String insertSQL, SharedSessionContractImplementor session, Binder binder)
Perform the indicated insert SQL statement and determine the identifier value generated.- Parameters:
insertSQL
- The INSERT statement stringsession
- The session in which we are operatingbinder
- The param binder- Returns:
- The generated identifier value.
-
-