VIVO-870 Create IndividualDao.getAllIndividualUris()

This replaces IndividualDao.getAllOfThisTypeIterator(). It returns the list that was created instead of
the iterator.

This would require a change to ObjectSourceIFace, but we get rid of it instead. Nobody was using it.
This commit is contained in:
Jim Blake 2015-01-11 18:30:28 -05:00
parent 99c03ce49a
commit 0602406c53
6 changed files with 12 additions and 27 deletions

View file

@ -130,9 +130,9 @@ public class IndividualDaoStub implements IndividualDao {
}
@Override
public Iterator<String> getAllOfThisTypeIterator() {
public Collection<String> getAllIndividualUris() {
throw new RuntimeException(
"IndividualDaoStub.getAllOfThisTypeIterator() not implemented.");
"IndividualDaoStub.getAllIndividualUris() not implemented.");
}
@Override