return getDataSource().loadAll();
}
public void setDataSource(String databaseType) throws UnsupportedOperationException {
if (databaseType.equalsIgnoreCase("flatfile"))
setDataSource(new TownyFlatFileSource());
else if (databaseType.equalsIgnoreCase("flatfile-hmod"))
setDataSource(new TownyHModFlatFileSource());
else
throw new UnsupportedOperationException();
}