Package org.dspace.eperson.dao.impl
Class RegistrationDataDAOImpl
- java.lang.Object
-
- org.dspace.core.AbstractHibernateDAO<RegistrationData>
-
- org.dspace.eperson.dao.impl.RegistrationDataDAOImpl
-
- All Implemented Interfaces:
GenericDAO<RegistrationData>,RegistrationDataDAO
public class RegistrationDataDAOImpl extends AbstractHibernateDAO<RegistrationData> implements RegistrationDataDAO
Hibernate implementation of the Database Access Object interface class for the RegistrationData object. This class is responsible for all database calls for the RegistrationData object and is autowired by spring This class should never be accessed directly.- Author:
- kevinvandevelde at atmire.com
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRegistrationDataDAOImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteByToken(Context context, String token)RegistrationDatafindByEmail(Context context, String email)RegistrationDatafindByToken(Context context, String token)-
Methods inherited from class org.dspace.core.AbstractHibernateDAO
count, count, countLong, create, createQuery, delete, executeCriteriaQuery, findAll, findAll, findByID, findByID, findByX, findMany, findMany, findUnique, getCriteriaBuilder, getCriteriaQuery, getHibernateSession, iterate, list, list, list, save, singleResult, singleResult, uniqueResult, uniqueResult
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.dspace.core.GenericDAO
create, delete, findAll, findAll, findByID, findByID, findMany, findUnique, save
-
-
-
-
Method Detail
-
findByEmail
public RegistrationData findByEmail(Context context, String email) throws SQLException
- Specified by:
findByEmailin interfaceRegistrationDataDAO- Throws:
SQLException
-
findByToken
public RegistrationData findByToken(Context context, String token) throws SQLException
- Specified by:
findByTokenin interfaceRegistrationDataDAO- Throws:
SQLException
-
deleteByToken
public void deleteByToken(Context context, String token) throws SQLException
- Specified by:
deleteByTokenin interfaceRegistrationDataDAO- Throws:
SQLException
-
-