Package com.logicaldoc.core.metadata
Class HibernateTemplateDAO
java.lang.Object
com.logicaldoc.core.HibernatePersistentObjectDAO<Template>
com.logicaldoc.core.metadata.HibernateTemplateDAO
- All Implemented Interfaces:
TemplateDAO,PersistentObjectDAO<Template>
@Repository("templateDAO")
public class HibernateTemplateDAO
extends HibernatePersistentObjectDAO<Template>
implements TemplateDAO
Hibernate implementation of
TemplateDAO- Since:
- 3.0
- Author:
- Marco Meschieri - LogicalDOC
-
Field Summary
Fields inherited from interface com.logicaldoc.core.PersistentObjectDAO
ENTITY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCreates a clone of an existing templateintcountDocs(long id) Counts the total number of documents using this templateintcountFolders(long id) voiddelete(long id, int code) This method deletes an entity and you can give a deletion codefindAll()Finds all entities in the databasefindAll(long tenantId) Finds all entities in a specific tenant.findByName(String name, long tenantId) This method finds a template by namefindByType(int type, long tenantId) This method finds a template by typegetAllowedPermissions(long templateId, long userId) Finds all permissions of a user enabled on the specified templatevoidinitialize(Template template) Doesn't do anything by defaultbooleanisReadEnable(long templateId, long userId) This method is looking up for read rights for a template and an userbooleanisWriteEnable(long templateId, long userId) Returns if a template is writable for a uservoidThis method persists the entity objectMethods inherited from class com.logicaldoc.core.HibernatePersistentObjectDAO
bulkUpdate, delete, deleteAll, deleteAll, evict, evict, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDatabaseMetadata, getDbms, 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, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDatabaseMetadata, getDbms, isMySQL, isOracle, jdbcUpdate, jdbcUpdate, query, query, queryForDouble, queryForDouble, queryForInt, queryForInt, queryForList, queryForList, queryForList, queryForLong, queryForLong, queryForObject, queryForObject, queryForResultSet, queryForString, queryForString
-
Constructor Details
-
HibernateTemplateDAO
public HibernateTemplateDAO()
-
-
Method Details
-
findAll
Description copied from interface:PersistentObjectDAOFinds all entities in the database- Specified by:
findAllin interfacePersistentObjectDAO<Template>- Overrides:
findAllin classHibernatePersistentObjectDAO<Template>- Returns:
- The list of all entities
-
findAll
Description copied from interface:PersistentObjectDAOFinds all entities in a specific tenant.- Specified by:
findAllin interfacePersistentObjectDAO<Template>- Overrides:
findAllin classHibernatePersistentObjectDAO<Template>- Parameters:
tenantId- Identifier of the tenant to search in- Returns:
- The list of all entities
-
findByName
Description copied from interface:TemplateDAOThis method finds a template by name- Specified by:
findByNamein interfaceTemplateDAO- Parameters:
name- Name of the templatetenantId- ID of the owning tenant- Returns:
- Template with given name
- Throws:
PersistenceException- Error in the data layer
-
delete
Description copied from interface:PersistentObjectDAOThis method deletes an entity and you can give a deletion code- Specified by:
deletein interfacePersistentObjectDAO<Template>- Overrides:
deletein classHibernatePersistentObjectDAO<Template>- 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<Template>- Overrides:
storein classHibernatePersistentObjectDAO<Template>- Parameters:
template- entity to be stored- Throws:
PersistenceException- raised in case of errors in the database
-
countFolders
public int countFolders(long id) -
countDocs
Description copied from interface:TemplateDAOCounts the total number of documents using this template- Specified by:
countDocsin interfaceTemplateDAO- Parameters:
id- The template ID- Returns:
- the documents count
- Throws:
PersistenceException- Error in the data layer
-
findByType
Description copied from interface:TemplateDAOThis method finds a template by type- Specified by:
findByTypein interfaceTemplateDAO- Parameters:
type- Type of the templatetenantId- ID of the owning tenant- Returns:
- Template with given type
- Throws:
PersistenceException- Error in the data layer
-
initialize
Description copied from class:HibernatePersistentObjectDAODoesn't do anything by default- Specified by:
initializein interfacePersistentObjectDAO<Template>- Specified by:
initializein interfaceTemplateDAO- Overrides:
initializein classHibernatePersistentObjectDAO<Template>- Parameters:
template- The entity to be initialised
-
isWriteEnable
public boolean isWriteEnable(long templateId, long userId) Description copied from interface:TemplateDAOReturns if a template is writable for a user- Specified by:
isWriteEnablein interfaceTemplateDAO- Parameters:
templateId- check this templateuserId- privileges for this should be checked- Returns:
- if the user can edit the template
-
isReadEnable
public boolean isReadEnable(long templateId, long userId) Description copied from interface:TemplateDAOThis method is looking up for read rights for a template and an user- Specified by:
isReadEnablein interfaceTemplateDAO- Parameters:
templateId- ID of the templateuserId- ID of the user- Returns:
- if the user can access the template
-
getAllowedPermissions
Description copied from interface:TemplateDAOFinds all permissions of a user enabled on the specified template- Specified by:
getAllowedPermissionsin interfaceTemplateDAO- Parameters:
templateId- ID of the templateuserId- ID of the user- Returns:
- Collection of enabled permissions
-
clone
Description copied from interface:TemplateDAOCreates a clone of an existing template- Specified by:
clonein interfaceTemplateDAO- Parameters:
id- Identifier of the original templatecloneName- Name of the cloned template- Returns:
- the created clone
- Throws:
PersistenceException- Error in the data layer
-