91354: WIP: basic fix for reindexing older versions of items

This commit is contained in:
Bruno Roemers
2022-05-18 13:30:27 +02:00
parent ea8b4f4896
commit b0482bcdd8
5 changed files with 40 additions and 1 deletions

View File

@@ -245,6 +245,10 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
return itemDAO.findAll(context, true, true);
}
public Iterator<Item> findAllRegularItems(Context context) throws SQLException {
return itemDAO.findAllRegularItems(context);
};
@Override
public Iterator<Item> findBySubmitter(Context context, EPerson eperson) throws SQLException {
return itemDAO.findBySubmitter(context, eperson);