/** * 返回所有用户值对象 * * @return 角色值对象列表 */ public List<RoleVO> findAllRoleVOs() { List<RoleVO> rolevos = new ArrayList<RoleVO>(); Set<Function> functions = null; List<String> functionNames = null; Function function = null; List<Role> roles = roleDao.loadAll(); for (Role role : roles) { RoleVO roleVO = new RoleVO(); BeanUtils.copyProperties(role, roleVO); functions = role.getFunctions(); functionNames = new ArrayList<String>(); for (Function tempFunction : functions) { // 查找功能(权限)名称 function = functionDao.get(tempFunction.getId()); // if (0 != function.getFunctionParent()) { functionNames.add(function.getFunctionName()); // } } roleVO.setFunctionName(functionNames.toString()); rolevos.add(roleVO); } return rolevos; }
/** * 根据角色ID查找剩余的功能列表 * * @param roleId 角色ID * @return 功能列表 */ public List<Function> findLeftFunctionsByRoleId(Long roleId) { List<Function> leftFunctions = new ArrayList<Function>(); List<Function> functions = new ArrayList<Function>(); Role role = roleDao.get(roleId); if (null != role) { Set<Function> functionSet = role.getFunctions(); for (Function function : functionSet) { // 过滤Root类型的功能(functionParen为0) // if (0 != function.getFunctionParent()) { functions.add(function); // } } } List<Function> allFunctions = functionDao.loadAll(); for (Function functionDB : allFunctions) { // 过滤Root类型的功能(functionParen为0) // if (0 != functionDB.getFunctionParent()) { leftFunctions.add(functionDB); // } } leftFunctions.removeAll(functions); return leftFunctions; }