121122123124125126127128129130131
// Bind data from CSV record with model classes factory.bind(result, model); // Link objects together factory.link(model); // Add objects graph to the list models.add(model); if (LOG.isDebugEnabled()) {
169170171172173174175176177178179
// Bind data from CSV record with model classes factory.bind(result, model, count); // Link objects together factory.link(model); // Add objects graph to the list models.add(model); LOG.debug("Graph of objects created: {}", model);
180181182183184185186187188189190
// Bind data from CSV record with model classes factory.bind(result, model, count); // Link objects together factory.link(model); // Add objects graph to the list models.add(model); if (LOG.isDebugEnabled()) {