Package com.logicaldoc.core.document
Class HibernateBookmarkDAO
java.lang.Object
com.logicaldoc.core.HibernatePersistentObjectDAO<Bookmark>
com.logicaldoc.core.document.HibernateBookmarkDAO
- All Implemented Interfaces:
BookmarkDAO,PersistentObjectDAO<Bookmark>
@Repository("bookmarkDAO")
public class HibernateBookmarkDAO
extends HibernatePersistentObjectDAO<Bookmark>
implements BookmarkDAO
Hibernate implementation of
BookmarkDAO- Since:
- 5.2
- Author:
- Matteo Caruso - LogicalDOC
-
Field Summary
Fields inherited from interface com.logicaldoc.core.PersistentObjectDAO
ENTITY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfindBookmarkedDocs(long userId) Finds the identifiers of the docs bookmarked by the given userfindByUserId(long userId) Finds all bookmarks for the given user idfindByUserIdAndDocId(long userId, long docId) Finds all bookmarks for the given user id and the given document's identifierfindByUserIdAndFolderId(long userId, long folderId) Finds the bookmark for the given user id and the given folder idbooleanisDocBookmarkedByUser(long docId, long userId) Checks if the document is bookmarked by a userMethods inherited from class com.logicaldoc.core.HibernatePersistentObjectDAO
bulkUpdate, delete, delete, deleteAll, deleteAll, evict, evict, findAll, findAll, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDatabaseMetadata, getDbms, initialize, isMySQL, isOracle, jdbcUpdate, jdbcUpdate, query, query, queryForDouble, queryForDouble, queryForInt, queryForInt, queryForList, queryForList, queryForList, queryForLong, queryForLong, queryForObject, queryForObject, queryForResultSet, queryForString, queryForString, setSessionFactory, storeMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.logicaldoc.core.PersistentObjectDAO
bulkUpdate, delete, delete, deleteAll, deleteAll, evict, evict, findAll, findAll, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDatabaseMetadata, getDbms, initialize, isMySQL, isOracle, jdbcUpdate, jdbcUpdate, query, query, queryForDouble, queryForDouble, queryForInt, queryForInt, queryForList, queryForList, queryForList, queryForLong, queryForLong, queryForObject, queryForObject, queryForResultSet, queryForString, queryForString, store
-
Constructor Details
-
HibernateBookmarkDAO
public HibernateBookmarkDAO()
-
-
Method Details
-
findByUserId
Description copied from interface:BookmarkDAOFinds all bookmarks for the given user id- Specified by:
findByUserIdin interfaceBookmarkDAO- Parameters:
userId- ID of the user- Returns:
- Collection of all bookmarks for the specified user ordered by position
- Throws:
PersistenceException- Error in the database
-
findByUserIdAndDocId
Description copied from interface:BookmarkDAOFinds all bookmarks for the given user id and the given document's identifier- Specified by:
findByUserIdAndDocIdin interfaceBookmarkDAO- Parameters:
userId- ID of the userdocId- ID of the document- Returns:
- The bookmark
- Throws:
PersistenceException- Error in the database
-
findByUserIdAndFolderId
Description copied from interface:BookmarkDAOFinds the bookmark for the given user id and the given folder id- Specified by:
findByUserIdAndFolderIdin interfaceBookmarkDAO- Parameters:
userId- ID of the userfolderId- ID of the folder- Returns:
- The bookmark
- Throws:
PersistenceException- Error in the database
-
findBookmarkedDocs
Description copied from interface:BookmarkDAOFinds the identifiers of the docs bookmarked by the given user- Specified by:
findBookmarkedDocsin interfaceBookmarkDAO- Parameters:
userId- identifier of the user- Returns:
- list of document identifiers
- Throws:
PersistenceException- Error in the database
-
isDocBookmarkedByUser
Description copied from interface:BookmarkDAOChecks if the document is bookmarked by a user- Specified by:
isDocBookmarkedByUserin interfaceBookmarkDAO- Parameters:
docId- identifier of the documentuserId- identifier of the user- Returns:
- true id the document was bookmarked
- Throws:
PersistenceException- Error in the database
-