Package org.dspace.supervision.dao
Interface SupervisionOrderDao
- All Superinterfaces:
GenericDAO<SupervisionOrder>
- All Known Implementing Classes:
SupervisionOrderDaoImpl
Database Access Object interface class for the SupervisionOrder object.
The implementation of this class is responsible for all database calls for the SupervisionOrder object
and is autowired by spring
- Author:
- Mohamed Eskander (mohamed.eskander at 4science dot it)
-
Method Summary
Modifier and TypeMethodDescriptionfindByItem(Context context, Item item) find all Supervision Orders related to the itemfindByItemAndGroup(Context context, Item item, Group group) find the Supervision Order related to the item and group
-
Method Details
-
findByItem
find all Supervision Orders related to the item- Parameters:
context- The DSpace contextitem- the item- Returns:
- the Supervision Orders related to the item
- Throws:
SQLException- If something goes wrong in the database
-
findByItemAndGroup
find the Supervision Order related to the item and group- Parameters:
context- The DSpace contextitem- the itemgroup- the group- Returns:
- the Supervision Order related to the item and group
- Throws:
SQLException- If something goes wrong in the database
-