Package org.dspace.content.service
Interface SupervisedItemService
-
- All Known Implementing Classes:
SupervisedItemServiceImpl
public interface SupervisedItemServiceClass to handle WorkspaceItems which are being supervised.- Version:
- $Revision$
- Author:
- Richard Jones
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<WorkspaceItem>findbyEPerson(Context context, EPerson ep)Get items being supervised by given EPersonList<WorkspaceItem>getAll(Context context)Get all workspace items which are being supervised
-
-
-
Method Detail
-
getAll
List<WorkspaceItem> getAll(Context context) throws SQLException
Get all workspace items which are being supervised- Parameters:
context- the context this object exists in- Returns:
- array of SupervisedItems
- Throws:
SQLException- if database error
-
findbyEPerson
List<WorkspaceItem> findbyEPerson(Context context, EPerson ep) throws SQLException
Get items being supervised by given EPerson- Parameters:
ep- the eperson who's items to supervise we wantcontext- the dspace context- Returns:
- the items eperson is supervising in an array
- Throws:
SQLException- if database error
-
-