Package org.dspace.identifier.dao
Interface DOIDAO
- All Superinterfaces:
GenericDAO<DOI>
- All Known Implementing Classes:
DOIDAOImpl
Database Access Object interface class for the DOI object.
The implementation of this class is responsible for all database calls for the DOI 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
Modifier and TypeMethodDescriptionfindByStatus(Context context, List<Integer> statuses) findDOIByDSpaceObject(Context context, DSpaceObject dso) findDOIByDSpaceObject(Context context, DSpaceObject dso, List<Integer> statusToExclude) findSimilarNotInState(Context context, String doi, List<Integer> statuses, boolean dsoNotNull)
-
Method Details
-
findByDoi
- Throws:
SQLException
-
findDOIByDSpaceObject
DOI findDOIByDSpaceObject(Context context, DSpaceObject dso, List<Integer> statusToExclude) throws SQLException - Throws:
SQLException
-
findSimilarNotInState
List<DOI> findSimilarNotInState(Context context, String doi, List<Integer> statuses, boolean dsoNotNull) throws SQLException - Throws:
SQLException
-
findByStatus
- Throws:
SQLException
-
findDOIByDSpaceObject
- Throws:
SQLException
-