Package com.sogou.qadev.service.cynthia.bean

Examples of com.sogou.qadev.service.cynthia.bean.Flow.queryUserNodeRoles()


        templateSet.add(template);
        continue;
      }
     
      //其它角色查看
      List<Role> userRoleList = Arrays.asList(flow.queryUserNodeRoles(das.getUsername(), template.getId()));
      Role[] readActionRoles = flow.queryReadActionRoles();
     
      for(Role role : readActionRoles){
        if(userRoleList.contains(role)){
          templateSet.add(template);
View Full Code Here


        if(flow == null){
          templateAllowMap.put(template.getId(), false);
          continue;
        }

        Role[] roleArray = flow.queryUserNodeRoles(user, template.getId());
        if(roleArray != null && roleArray.length > 0){
          filterAllow = true;
          templateAllowMap.put(template.getId(), true);
          break;
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.