Package org.dspace.eperson.service
Interface RegistrationDataService
-
- All Superinterfaces:
DSpaceCRUDService<RegistrationData>
- All Known Implementing Classes:
RegistrationDataServiceImpl
public interface RegistrationDataService extends DSpaceCRUDService<RegistrationData>
Service interface class for the RegistrationData object. The implementation of this class is responsible for all business logic calls for the RegistrationData object and is autowired by spring- 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)
-
-
-
Method Detail
-
findByToken
RegistrationData findByToken(Context context, String token) throws SQLException
- Throws:
SQLException
-
findByEmail
RegistrationData findByEmail(Context context, String email) throws SQLException
- Throws:
SQLException
-
deleteByToken
void deleteByToken(Context context, String token) throws SQLException
- Throws:
SQLException
-
-