return allDatabaseRemoteFilesMap;
}
private long getLastTimeCleaned() {
try {
CleanupTO cleanupTO = (new Persister()).read(CleanupTO.class, config.getCleanupFile());
return cleanupTO.getLastTimeCleaned();
}
catch (Exception e) {
logger.log(Level.INFO, "Something went wrong with reading cleanup.xml, assuming never cleaned." + e.getMessage());
return 0;
}