Interface PoolTaskDAO
-
- All Superinterfaces:
GenericDAO<PoolTask>
- All Known Implementing Classes:
PoolTaskDAOImpl
public interface PoolTaskDAO extends GenericDAO<PoolTask>
Database Access Object interface class for the PoolTask object. The implementation of this class is responsible for all database calls for the PoolTask object and is autowired by spring This class should only be accessed from a single service and should never be exposed outside of the API- Author:
- kevinvandevelde at atmire.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PoolTask>findByEPerson(Context context, EPerson ePerson)List<PoolTask>findByGroup(Context context, Group group)List<PoolTask>findByWorkflowItem(Context context, XmlWorkflowItem workflowItem)PoolTaskfindByWorkflowItemAndEPerson(Context context, XmlWorkflowItem workflowItem, EPerson ePerson)PoolTaskfindByWorkflowItemAndGroup(Context context, Group group, XmlWorkflowItem workflowItem)-
Methods inherited from interface org.dspace.core.GenericDAO
create, delete, findAll, findAll, findByID, findByID, findMany, findUnique, save
-
-
-
-
Method Detail
-
findByEPerson
List<PoolTask> findByEPerson(Context context, EPerson ePerson) throws SQLException
- Throws:
SQLException
-
findByGroup
List<PoolTask> findByGroup(Context context, Group group) throws SQLException
- Throws:
SQLException
-
findByWorkflowItem
List<PoolTask> findByWorkflowItem(Context context, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
findByWorkflowItemAndEPerson
PoolTask findByWorkflowItemAndEPerson(Context context, XmlWorkflowItem workflowItem, EPerson ePerson) throws SQLException
- Throws:
SQLException
-
findByWorkflowItemAndGroup
PoolTask findByWorkflowItemAndGroup(Context context, Group group, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
-