Package com.logicaldoc.core.document
Class HibernateDocumentLinkDAO
java.lang.Object
com.logicaldoc.core.HibernatePersistentObjectDAO<DocumentLink>
com.logicaldoc.core.document.HibernateDocumentLinkDAO
- All Implemented Interfaces:
DocumentLinkDAO,PersistentObjectDAO<DocumentLink>
@Repository("documentLinkDAO")
public class HibernateDocumentLinkDAO
extends HibernatePersistentObjectDAO<DocumentLink>
implements DocumentLinkDAO
Hibernate implementation of
DocumentLinkDAO- Since:
- 4.0
- Author:
- Matteo Caruso - LogicalDOC
-
Field Summary
Fields inherited from interface com.logicaldoc.core.PersistentObjectDAO
ENTITY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddelete(long id, int code) This method deletes an entity and you can give a deletion codefindByDocId(long docId) This method finds the list of document link in which there is a document with the given IDfindByDocId(long docId, String type) This method finds the list of document link, filtered by the given link type, in which there is a document with the given IDfindByDocIdsAndType(long docId1, long docId2, String type) Find a document link using its alternate keysvoidstore(DocumentLink entity) This method persists the entity objectMethods inherited from class com.logicaldoc.core.HibernatePersistentObjectDAO
bulkUpdate, 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, setSessionFactoryMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.logicaldoc.core.PersistentObjectDAO
bulkUpdate, 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
-
Constructor Details
-
HibernateDocumentLinkDAO
public HibernateDocumentLinkDAO()
-
-
Method Details
-
findByDocId
Description copied from interface:DocumentLinkDAOThis method finds the list of document link in which there is a document with the given ID- Specified by:
findByDocIdin interfaceDocumentLinkDAO- Parameters:
docId- ID of the document- Returns:
- The list of document link
- Throws:
PersistenceException- Error in the database
-
findByDocId
Description copied from interface:DocumentLinkDAOThis method finds the list of document link, filtered by the given link type, in which there is a document with the given ID- Specified by:
findByDocIdin interfaceDocumentLinkDAO- Parameters:
docId- ID of the documenttype- Type of each document link in the return list- Returns:
- The list of document link
- Throws:
PersistenceException- Error in the database
-
findByDocIdsAndType
public DocumentLink findByDocIdsAndType(long docId1, long docId2, String type) throws PersistenceException Description copied from interface:DocumentLinkDAOFind a document link using its alternate keys- Specified by:
findByDocIdsAndTypein interfaceDocumentLinkDAO- Parameters:
docId1- identifier of the first documentdocId2- identifier of the secondtype- the document type(null or pdf- Returns:
- The found instance
- Throws:
PersistenceException- Error in the database
-
delete
Description copied from interface:PersistentObjectDAOThis method deletes an entity and you can give a deletion code- Specified by:
deletein interfacePersistentObjectDAO<DocumentLink>- Overrides:
deletein classHibernatePersistentObjectDAO<DocumentLink>- Parameters:
id- ID of the entity which should be deletedcode- Deletion code- Throws:
PersistenceException- raised in case of errors in the database
-
store
Description copied from interface:PersistentObjectDAOThis method persists the entity object- Specified by:
storein interfacePersistentObjectDAO<DocumentLink>- Overrides:
storein classHibernatePersistentObjectDAO<DocumentLink>- Parameters:
entity- entity to be stored- Throws:
PersistenceException- raised in case of errors in the database
-