mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-16 14:33:09 +00:00
Implemented the Item Mapper functionality
This commit is contained in:
@@ -264,6 +264,17 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
|
||||
return itemDAO.findArchivedByCollection(context, collection, limit, offset);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<Item> findByCollectionMapping(Context context, Collection collection, Integer limit, Integer offset)
|
||||
throws SQLException {
|
||||
return itemDAO.findArchivedByCollectionExcludingOwning(context, collection, limit, offset);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int countByCollectionMapping(Context context, Collection collection) throws SQLException {
|
||||
return itemDAO.countArchivedByCollectionExcludingOwning(context, collection);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<Item> findAllByCollection(Context context, Collection collection) throws SQLException {
|
||||
return itemDAO.findAllByCollection(context, collection);
|
||||
|
Reference in New Issue
Block a user