Class TaskListItemDAOImpl
- java.lang.Object
-
- org.dspace.core.AbstractHibernateDAO<TaskListItem>
-
- org.dspace.workflowbasic.dao.impl.TaskListItemDAOImpl
-
- All Implemented Interfaces:
GenericDAO<TaskListItem>,TaskListItemDAO
public class TaskListItemDAOImpl extends AbstractHibernateDAO<TaskListItem> implements TaskListItemDAO
Hibernate implementation of the Database Access Object interface class for the TaskListItem object. This class is responsible for all database calls for the TaskListItem object and is autowired by spring This class should never be accessed directly.- Author:
- kevinvandevelde at atmire.com
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTaskListItemDAOImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteByWorkflowItem(Context context, BasicWorkflowItem workflowItem)List<TaskListItem>findByEPerson(Context context, EPerson ePerson)-
Methods inherited from class org.dspace.core.AbstractHibernateDAO
count, count, countLong, create, createQuery, delete, executeCriteriaQuery, findAll, findAll, findByID, findByID, findByX, findMany, findMany, findUnique, getCriteriaBuilder, getCriteriaQuery, getHibernateSession, iterate, list, list, list, save, singleResult, singleResult, uniqueResult, uniqueResult
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.dspace.core.GenericDAO
create, delete, findAll, findAll, findByID, findByID, findMany, findUnique, save
-
-
-
-
Method Detail
-
deleteByWorkflowItem
public void deleteByWorkflowItem(Context context, BasicWorkflowItem workflowItem) throws SQLException
- Specified by:
deleteByWorkflowItemin interfaceTaskListItemDAO- Throws:
SQLException
-
findByEPerson
public List<TaskListItem> findByEPerson(Context context, EPerson ePerson) throws SQLException
- Specified by:
findByEPersonin interfaceTaskListItemDAO- Throws:
SQLException
-
-