Package org.dspace.workflowbasic.service
Interface TaskListItemService
-
- All Known Implementing Classes:
TaskListItemServiceImpl
public interface TaskListItemServiceService interface class for the TaskListItem object. The implementation of this class is responsible for all business logic calls for the TaskListItem object and is autowired by spring- Author:
- kevinvandevelde at atmire.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskListItemcreate(Context context, BasicWorkflowItem workflowItem, EPerson ePerson)voiddeleteByWorkflowItem(Context context, BasicWorkflowItem workflowItem)List<TaskListItem>findByEPerson(Context context, EPerson ePerson)voidupdate(Context context, TaskListItem taskListItem)
-
-
-
Method Detail
-
create
TaskListItem create(Context context, BasicWorkflowItem workflowItem, EPerson ePerson) throws SQLException
- Throws:
SQLException
-
deleteByWorkflowItem
void deleteByWorkflowItem(Context context, BasicWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
update
void update(Context context, TaskListItem taskListItem) throws SQLException
- Throws:
SQLException
-
findByEPerson
List<TaskListItem> findByEPerson(Context context, EPerson ePerson) throws SQLException
- Throws:
SQLException
-
-