Package org.dspace.identifier.dao
Interface DOIDAO
-
- All Superinterfaces:
GenericDAO<DOI>
- All Known Implementing Classes:
DOIDAOImpl
public interface DOIDAO extends GenericDAO<DOI>
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DOIfindByDoi(Context context, String doi)List<DOI>findByStatus(Context context, List<Integer> statuses)DOIfindDOIByDSpaceObject(Context context, DSpaceObject dso)DOIfindDOIByDSpaceObject(Context context, DSpaceObject dso, List<Integer> statusToExclude)List<DOI>findSimilarNotInState(Context context, String doi, List<Integer> statuses, boolean dsoNotNull)-
Methods inherited from interface org.dspace.core.GenericDAO
create, delete, findAll, findAll, findByID, findByID, findMany, findUnique, save
-
-
-
-
Method Detail
-
findByDoi
DOI findByDoi(Context context, String doi) throws SQLException
- 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
List<DOI> findByStatus(Context context, List<Integer> statuses) throws SQLException
- Throws:
SQLException
-
findDOIByDSpaceObject
DOI findDOIByDSpaceObject(Context context, DSpaceObject dso) throws SQLException
- Throws:
SQLException
-
-