mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-14 05:23:14 +00:00
dao pagination support for item and bitstream
This commit is contained in:
@@ -200,6 +200,11 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
|
||||
return itemDAO.findAll(context, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<Item> findAll(Context context, Integer limit, Integer offset) throws SQLException {
|
||||
return itemDAO.findAll(context, true, limit, offset);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<Item> findAllUnfiltered(Context context) throws SQLException {
|
||||
return itemDAO.findAll(context, true, true);
|
||||
|
Reference in New Issue
Block a user