Package com.logicaldoc.core.contact
Interface ContactDAO
-
- All Superinterfaces:
PersistentObjectDAO<Contact>
- All Known Implementing Classes:
HibernateContactDAO
public interface ContactDAO extends PersistentObjectDAO<Contact>
Instances of this class is a DAO-service for Contact business entities.- Since:
- 6.8
- Author:
- Marco Meschieri - LogicalDOC
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Contact>
findByUser(Long userId, String email)
Finds the contacts of the specified user.-
Methods inherited from interface com.logicaldoc.core.PersistentObjectDAO
bulkUpdate, delete, delete, deleteAll, deleteAll, findAll, findAll, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDbms, initialize, isOracle, jdbcUpdate, jdbcUpdate, query, queryForInt, queryForList, queryForList, queryForLong, queryForObject, queryForRowSet, queryForString, store
-
-