Interface InProgressUserDAO
-
- All Superinterfaces:
GenericDAO<InProgressUser>
- All Known Implementing Classes:
InProgressUserDAOImpl
public interface InProgressUserDAO extends GenericDAO<InProgressUser>
Database Access Object interface class for the InProgressUser object. The implementation of this class is responsible for all database calls for the InProgressUser 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 intcountFinishedUsers(Context context, XmlWorkflowItem workflowItem)intcountInProgressUsers(Context context, XmlWorkflowItem workflowItem)List<InProgressUser>findByEperson(Context context, EPerson ePerson)List<InProgressUser>findByWorkflowItem(Context context, XmlWorkflowItem workflowItem)InProgressUserfindByWorkflowItemAndEPerson(Context context, XmlWorkflowItem workflowItem, EPerson ePerson)-
Methods inherited from interface org.dspace.core.GenericDAO
create, delete, findAll, findAll, findByID, findByID, findMany, findUnique, save
-
-
-
-
Method Detail
-
findByWorkflowItemAndEPerson
InProgressUser findByWorkflowItemAndEPerson(Context context, XmlWorkflowItem workflowItem, EPerson ePerson) throws SQLException
- Throws:
SQLException
-
findByEperson
List<InProgressUser> findByEperson(Context context, EPerson ePerson) throws SQLException
- Throws:
SQLException
-
findByWorkflowItem
List<InProgressUser> findByWorkflowItem(Context context, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
countInProgressUsers
int countInProgressUsers(Context context, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
countFinishedUsers
int countFinishedUsers(Context context, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
-