Package com.logicaldoc.core.security.dao
Class HibernateMenuDAO
- java.lang.Object
-
- com.logicaldoc.core.HibernatePersistentObjectDAO<Menu>
-
- com.logicaldoc.core.security.dao.HibernateMenuDAO
-
- All Implemented Interfaces:
PersistentObjectDAO<Menu>
,MenuDAO
public class HibernateMenuDAO extends HibernatePersistentObjectDAO<Menu> implements MenuDAO
Hibernate implementation ofMenuDAO
- Since:
- 3.0
- Author:
- Marco Meschieri - LogicalDOC
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
applyRightToTree(long id)
Propagates the security policies of a node to the whole subtreeString
computePathExtended(long menuId)
Dynamically computes the path extended for the specified menu.boolean
delete(long menuId, int code)
This method deletes an entity and you can give a deletion codevoid
deleteAll(Collection<Menu> menus)
Deletes all entries form the databaseList<Menu>
findByGroupId(long groupId)
Finds all menus accessible by the passed groupList<Menu>
findByName(Menu parent, String name, boolean caseSensitive)
Finds all menus by menu text, contained in the parent menuList<Menu>
findByName(String name)
Finds all menus by menu text.List<Menu>
findByNameAndParentId(String name, long parentId)
Finds that folder that lies under a specific parent (given by the id) an with a given text(like operator is used)List<Menu>
findByParentId(long parentId)
Finds all children(direct and indirect) by parentIdList<Menu>
findByUserId(long userId)
Finds authorized menus for a user.List<Menu>
findByUserId(long userId, long parentId)
Finds direct children of a menuList<Menu>
findByUserId(long userId, long parentId, Integer type)
List<Menu>
findChildren(long parentId, long userId)
Finds direct children of a menu accessible by the given user.List<Menu>
findChildren(long parentId, Integer max)
Finds direct children of a menu.List<Long>
findIdByUserId(long userId, long parentId)
This method selects only the menuId from the menus for which a user is authorized.List<Long>
findIdByUserId(long userId, long parentId, Integer type)
List<Long>
findMenuIdByUserId(long userId)
This method selects only the menuId from the menus for which a user is authorizedList<Long>
findMenuIdByUserIdAndPermission(long userId, Permission permission)
Finds all menus ids with a specific permission enabled on the specifies userString
findNameById(long menuId)
This method selects only the menu text from a menuList<Menu>
findParents(long menuId)
Returns a List of menus being a parent of the given menu.UserDAO
getUserDAO()
boolean
hasWriteAccess(Menu menu, long userId)
Checks that the user has access to the menu and all its sub-itemsint
isMenuWriteable(long menuId, long userId)
Returns if a menu is writeable for a userboolean
isReadEnable(long menuId, long userId)
This method is looking up for read rights for a menu and an userboolean
isWriteEnable(long menuId, long userId)
This method is looking up for writing rights for a menu and an uservoid
restore(long menuId, boolean parents)
Restores a previously deleted menuvoid
setUserDAO(UserDAO userDAO)
boolean
store(Menu menu)
This method persists the entity object-
Methods inherited from class com.logicaldoc.core.HibernatePersistentObjectDAO
bulkUpdate, delete, deleteAll, findAll, findAll, findAllIds, findAllIds, findById, findById, findByObjectQuery, findByQuery, findByWhere, findByWhere, findIdsByWhere, findIdsByWhere, getDbms, getSessionFactory, initialize, isOracle, jdbcUpdate, jdbcUpdate, query, queryForInt, queryForList, queryForList, queryForLong, queryForObject, queryForRowSet, queryForString, setSessionFactory
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.logicaldoc.core.PersistentObjectDAO
bulkUpdate, delete, 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
-
-
-
-
Method Detail
-
getUserDAO
public UserDAO getUserDAO()
-
setUserDAO
public void setUserDAO(UserDAO userDAO)
-
store
public boolean store(Menu menu) throws PersistenceException
Description copied from interface:PersistentObjectDAO
This method persists the entity object- Specified by:
store
in interfacePersistentObjectDAO<Menu>
- Overrides:
store
in classHibernatePersistentObjectDAO<Menu>
- Parameters:
menu
- entity to be stored- Returns:
- True if successfully stored in a database
- Throws:
PersistenceException
- raised in case of errors in the database
-
findByUserId
public List<Menu> findByUserId(long userId)
Description copied from interface:MenuDAO
Finds authorized menus for a user.- Specified by:
findByUserId
in interfaceMenuDAO
- Parameters:
userId
- ID of the user.- Returns:
- List of found menus.
-
findByUserId
public List<Menu> findByUserId(long userId, long parentId)
Description copied from interface:MenuDAO
Finds direct children of a menu- Specified by:
findByUserId
in interfaceMenuDAO
- Parameters:
userId
- identifier of the userparentId
- MenuId of the menu which children are wanted- Returns:
- List of found menus sorted by name
-
findChildren
public List<Menu> findChildren(long parentId, Integer max)
Description copied from interface:MenuDAO
Finds direct children of a menu.- Specified by:
findChildren
in interfaceMenuDAO
- Parameters:
parentId
- MenuId of the menu which children are wantedmax
- Optional, maximum number of children- Returns:
- List of found menus
-
findChildren
public List<Menu> findChildren(long parentId, long userId)
Description copied from interface:MenuDAO
Finds direct children of a menu accessible by the given user.- Specified by:
findChildren
in interfaceMenuDAO
- Parameters:
parentId
- MenuId of the menu which children are wanteduserId
- Identifier of the user that mush have read access- Returns:
- List of found menus.
-
findByParentId
public List<Menu> findByParentId(long parentId)
Description copied from interface:MenuDAO
Finds all children(direct and indirect) by parentId- Specified by:
findByParentId
in interfaceMenuDAO
- Parameters:
parentId
- identifier of the parent menu- Returns:
- list of children menus
- See Also:
MenuDAO.findByParentId(long)
-
isWriteEnable
public boolean isWriteEnable(long menuId, long userId)
Description copied from interface:MenuDAO
This method is looking up for writing rights for a menu and an user- Specified by:
isWriteEnable
in interfaceMenuDAO
- Parameters:
menuId
- ID of the menuuserId
- ID of the user- Returns:
- id the user has write permission
-
isReadEnable
public boolean isReadEnable(long menuId, long userId)
Description copied from interface:MenuDAO
This method is looking up for read rights for a menu and an user- Specified by:
isReadEnable
in interfaceMenuDAO
- Parameters:
menuId
- ID of the menuuserId
- ID of the user- Returns:
- id the user can access the menu
-
findNameById
public String findNameById(long menuId)
Description copied from interface:MenuDAO
This method selects only the menu text from a menu- Specified by:
findNameById
in interfaceMenuDAO
- Parameters:
menuId
- Id of the menu- Returns:
- Selected menu text
-
findMenuIdByUserId
public List<Long> findMenuIdByUserId(long userId)
Description copied from interface:MenuDAO
This method selects only the menuId from the menus for which a user is authorized- Specified by:
findMenuIdByUserId
in interfaceMenuDAO
- Parameters:
userId
- ID of the user- Returns:
- List of selected menuId's
-
isMenuWriteable
public int isMenuWriteable(long menuId, long userId)
Description copied from interface:MenuDAO
Returns if a menu is writeable for a user- Specified by:
isMenuWriteable
in interfaceMenuDAO
- Parameters:
menuId
- check this menuuserId
- privileges for this should be checked- Returns:
- a 0 if false, a 1 if true
- See Also:
MenuDAO.isMenuWriteable(long, long)
-
hasWriteAccess
public boolean hasWriteAccess(Menu menu, long userId)
Description copied from interface:MenuDAO
Checks that the user has access to the menu and all its sub-items- Specified by:
hasWriteAccess
in interfaceMenuDAO
- Parameters:
menu
- the menuuserId
- identifier of the menu- Returns:
- if the user has write permission
-
findByGroupId
public List<Menu> findByGroupId(long groupId)
Description copied from interface:MenuDAO
Finds all menus accessible by the passed group- Specified by:
findByGroupId
in interfaceMenuDAO
- Parameters:
groupId
- The group id- Returns:
- The List of menus
-
findByName
public List<Menu> findByName(String name)
Description copied from interface:MenuDAO
Finds all menus by menu text.- Specified by:
findByName
in interfaceMenuDAO
- Parameters:
name
- name of the menu- Returns:
- List of menus with given menu text.
-
findByName
public List<Menu> findByName(Menu parent, String name, boolean caseSensitive)
Description copied from interface:MenuDAO
Finds all menus by menu text, contained in the parent menu- Specified by:
findByName
in interfaceMenuDAO
- Parameters:
parent
- The parent menu(optional)name
- the name to searchcaseSensitive
- if we have to consider the search case sensitive- Returns:
- List of menus with given menu name.
-
computePathExtended
public String computePathExtended(long menuId)
Description copied from interface:MenuDAO
Dynamically computes the path extended for the specified menu. The path extended is a human readable path in the form: /folder1/folder2/folder3- Specified by:
computePathExtended
in interfaceMenuDAO
- Parameters:
menuId
- identifier of the menu- Returns:
- full path of the menu
-
findByNameAndParentId
public List<Menu> findByNameAndParentId(String name, long parentId)
Description copied from interface:MenuDAO
Finds that folder that lies under a specific parent (given by the id) an with a given text(like operator is used)- Specified by:
findByNameAndParentId
in interfaceMenuDAO
- Parameters:
name
- name of the menuparentId
- identifier of the parent menu- Returns:
- list of manues
-
findParents
public List<Menu> findParents(long menuId)
Description copied from interface:MenuDAO
Returns a List of menus being a parent of the given menu. The list is ordered starting from the root of menus.- Specified by:
findParents
in interfaceMenuDAO
- Parameters:
menuId
- identifier of the group- Returns:
- hierarchy of parents
-
restore
public void restore(long menuId, boolean parents) throws PersistenceException
Description copied from interface:MenuDAO
Restores a previously deleted menu- Specified by:
restore
in interfaceMenuDAO
- Parameters:
menuId
- The menu identifierparents
- true if parents must be restored also- Throws:
PersistenceException
- is happened a database error
-
findMenuIdByUserIdAndPermission
public List<Long> findMenuIdByUserIdAndPermission(long userId, Permission permission)
Description copied from interface:MenuDAO
Finds all menus ids with a specific permission enabled on the specifies user- Specified by:
findMenuIdByUserIdAndPermission
in interfaceMenuDAO
- Parameters:
userId
- The user identifierpermission
- The permission to check- Returns:
- list of folder IDs
-
deleteAll
public void deleteAll(Collection<Menu> menus) throws PersistenceException
Description copied from interface:PersistentObjectDAO
Deletes all entries form the database- Specified by:
deleteAll
in interfacePersistentObjectDAO<Menu>
- Overrides:
deleteAll
in classHibernatePersistentObjectDAO<Menu>
- Parameters:
menus
- The entities to be deleted- Throws:
PersistenceException
- raised in case of errors in the database
-
delete
public boolean delete(long menuId, int code) throws PersistenceException
Description copied from interface:PersistentObjectDAO
This method deletes an entity and you can give a deletion code- Specified by:
delete
in interfacePersistentObjectDAO<Menu>
- Overrides:
delete
in classHibernatePersistentObjectDAO<Menu>
- Parameters:
menuId
- ID of the entity which should be deletedcode
- Deletion code- Returns:
- if the record has been successfully deleted
- Throws:
PersistenceException
- raised in case of errors in the database
-
applyRightToTree
public boolean applyRightToTree(long id)
Description copied from interface:MenuDAO
Propagates the security policies of a node to the whole subtree- Specified by:
applyRightToTree
in interfaceMenuDAO
- Parameters:
id
- identifier of a folder- Returns:
- true if all went correctly
-
findIdByUserId
public List<Long> findIdByUserId(long userId, long parentId)
Description copied from interface:MenuDAO
This method selects only the menuId from the menus for which a user is authorized. Only menus direct child of the specified parent are returned.- Specified by:
findIdByUserId
in interfaceMenuDAO
- Parameters:
userId
- ID of the user.parentId
- Parent menu- Returns:
- List of selected menuId's.
-
-