Package org.dspace.eperson.dao
Interface RegistrationDataDAO
-
- All Superinterfaces:
GenericDAO<RegistrationData>
- All Known Implementing Classes:
RegistrationDataDAOImpl
public interface RegistrationDataDAO extends GenericDAO<RegistrationData>
Database Access Object interface class for the RegistrationData object. The implementation of this class is responsible for all database calls for the RegistrationData 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 voiddeleteByToken(Context context, String token)RegistrationDatafindByEmail(Context context, String email)RegistrationDatafindByToken(Context context, String token)-
Methods inherited from interface org.dspace.core.GenericDAO
create, delete, findAll, findAll, findByID, findByID, findMany, findUnique, save
-
-
-
-
Method Detail
-
findByEmail
RegistrationData findByEmail(Context context, String email) throws SQLException
- Throws:
SQLException
-
findByToken
RegistrationData findByToken(Context context, String token) throws SQLException
- Throws:
SQLException
-
deleteByToken
void deleteByToken(Context context, String token) throws SQLException
- Throws:
SQLException
-
-