Package org.dspace.workflowbasic
Class TaskListItemServiceImpl
- java.lang.Object
-
- org.dspace.workflowbasic.TaskListItemServiceImpl
-
- All Implemented Interfaces:
TaskListItemService
public class TaskListItemServiceImpl extends Object implements TaskListItemService
Service implementation for the TaskListItem object. This class is responsible for all business logic calls for the TaskListItem object and is autowired by spring. This class should never be accessed directly.- Author:
- kevinvandevelde at atmire.com
-
-
Field Summary
Fields Modifier and Type Field Description protected TaskListItemDAOtaskListItemDAO
-
Constructor Summary
Constructors Modifier Constructor Description protectedTaskListItemServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete 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)
-
-
-
Field Detail
-
taskListItemDAO
@Autowired(required=true) protected TaskListItemDAO taskListItemDAO
-
-
Method Detail
-
create
public TaskListItem create(Context context, BasicWorkflowItem workflowItem, EPerson ePerson) throws SQLException
- Specified by:
createin interfaceTaskListItemService- Throws:
SQLException
-
deleteByWorkflowItem
public void deleteByWorkflowItem(Context context, BasicWorkflowItem workflowItem) throws SQLException
- Specified by:
deleteByWorkflowItemin interfaceTaskListItemService- Throws:
SQLException
-
update
public void update(Context context, TaskListItem taskListItem) throws SQLException
- Specified by:
updatein interfaceTaskListItemService- Throws:
SQLException
-
findByEPerson
public List<TaskListItem> findByEPerson(Context context, EPerson ePerson) throws SQLException
- Specified by:
findByEPersonin interfaceTaskListItemService- Throws:
SQLException
-
-