while (line != null) {
String[] splitLine = StringUtils.split(line, ',');
if (splitLine.length == 2) {
DefectTrackerType type = defectTrackerTypeDao.retrieveByName(splitLine[0]);
if (type == null) {
// let's create one
type = new DefectTrackerType();
type.setName(splitLine[0]);
type.setFullClassName(splitLine[1]);
defectTrackerTypeDao.saveOrUpdate(type);
LOG.info("Created a Defect Tracker with name " + splitLine[0]);