public void executeActions() throws HibernateException {
if ( !unresolvedInsertions.isEmpty() ) {
throw new IllegalStateException( "About to execute actions, but there are unresolved entity insert actions." );
}
for ( ExecutableList<?> l : executableLists ) {
if(!l.isEmpty()) {
executeActions( l );
}
}
}