if (LOG.isDebugEnabled()) {
LOG.debug("Counter " + count++ + " : content : " + line);
}
// Create POJO where CSV data will be stored
model = factory.factory();
// Split the CSV record according to the separator defined in
// annotated class @CSVRecord
String[] tokens = line.split(separator, -1);
List<String> result = Arrays.asList(tokens);