Interface InProgressUserService
-
- All Superinterfaces:
DSpaceCRUDService<InProgressUser>
- All Known Implementing Classes:
InProgressUserServiceImpl
public interface InProgressUserService extends DSpaceCRUDService<InProgressUser>
Service interface class for the InProgressUser object. The implementation of this class is responsible for all business logic calls for the InProgressUser object and is autowired by spring- Author:
- kevinvandevelde at atmire.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<InProgressUser>findByEperson(Context context, EPerson ePerson)List<InProgressUser>findByWorkflowItem(Context context, XmlWorkflowItem workflowItem)InProgressUserfindByWorkflowItemAndEPerson(Context context, XmlWorkflowItem workflowItem, EPerson ePerson)intgetNumberOfFinishedUsers(Context context, XmlWorkflowItem workflowItem)intgetNumberOfInProgressUsers(Context context, XmlWorkflowItem workflowItem)
-
-
-
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
-
getNumberOfInProgressUsers
int getNumberOfInProgressUsers(Context context, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
getNumberOfFinishedUsers
int getNumberOfFinishedUsers(Context context, XmlWorkflowItem workflowItem) throws SQLException
- Throws:
SQLException
-
-