Package org.hibernate.id
Interface PostInsertIdentifierGenerator
-
- All Superinterfaces:
Configurable
,ExportableProducer
,IdentifierGenerator
,StandardGenerator
- All Known Implementing Classes:
AbstractPostInsertGenerator
,IdentityGenerator
,SelectGenerator
public interface PostInsertIdentifierGenerator extends StandardGenerator
-
-
Field Summary
-
Fields inherited from interface org.hibernate.id.IdentifierGenerator
CONTRIBUTOR_NAME, ENTITY_NAME, GENERATOR_NAME, JPA_ENTITY_NAME
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description InsertGeneratedIdentifierDelegate
getInsertGeneratedIdentifierDelegate(PostInsertIdentityPersister persister, Dialect dialect, boolean isGetGeneratedKeysEnabled)
default boolean
supportsJdbcBatchInserts()
Check if JDBC batch inserts are supported.-
Methods inherited from interface org.hibernate.id.IdentifierGenerator
configure, generate, initialize, registerExportables
-
-
-
-
Method Detail
-
getInsertGeneratedIdentifierDelegate
InsertGeneratedIdentifierDelegate getInsertGeneratedIdentifierDelegate(PostInsertIdentityPersister persister, Dialect dialect, boolean isGetGeneratedKeysEnabled) throws HibernateException
- Throws:
HibernateException
-
supportsJdbcBatchInserts
default boolean supportsJdbcBatchInserts()
Description copied from interface:IdentifierGenerator
Check if JDBC batch inserts are supported.- Specified by:
supportsJdbcBatchInserts
in interfaceIdentifierGenerator
- Returns:
- JDBC batch inserts are supported.
-
-