Package com.logicaldoc.stamp
Interface StampDAO
-
- All Superinterfaces:
com.logicaldoc.core.PersistentObjectDAO<Stamp>
- All Known Implementing Classes:
HibernateStampDAO
public interface StampDAO extends com.logicaldoc.core.PersistentObjectDAO<Stamp>
DAO forStamp
handling.- Author:
- Marco Meschieri - LogicalDOC
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stamp
findByName(String name, long tenantId)
Finds the stamp with the given nameStamp
findByNameAndUser(String name, long userId)
Finds the stamp with the given name and userList<Stamp>
findByUser(long userId, boolean enabledOnly)
Finds the stamps for the given 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
-
-
-
-
Method Detail
-
findByName
Stamp findByName(String name, long tenantId)
Finds the stamp with the given name- Parameters:
name
- name of the stamptenantId
- identifier of the tenant- Returns:
- the found stamp
-
findByNameAndUser
Stamp findByNameAndUser(String name, long userId) throws com.logicaldoc.core.PersistenceException
Finds the stamp with the given name and user- Parameters:
name
- name of the stampuserId
- identifier of the user- Returns:
- the found stamp
- Throws:
com.logicaldoc.core.PersistenceException
- error in the database
-
-