// TODO
// System.out.println("Type unknown for " + subject + "!");
} else {
for (String type : types) {
// System.out.println("Checking " + type + " vs " + typeHandlers.size());
SubjectHandler specificHandler = typeHandlers.get(type);
if (specificHandler != null) {
// System.out.println("HANDLE ! " + type);
specificHandler.handleSubject(subject, properties, links);
}
}
}
writer.handleSubject(subject, properties, links);