use of org.springframework.data.jdbc.core.convert.Identifier in project spring-data-jdbc by spring-projects.
the class JdbcAggregateChangeExecutionContext method executeInsert.
<T> void executeInsert(DbAction.Insert<T> insert) {
Identifier parentKeys = getParentKeys(insert, converter);
Object id = accessStrategy.insert(insert.getEntity(), insert.getEntityType(), parentKeys);
add(new DbActionExecutionResult(insert, id));
}
Aggregations