Examples of queryGroupsOfUser()


Examples of com.narirelays.ems.services.PrivilegeManagementService.queryGroupsOfUser()

  public String queryGroupsOfUser()//查看用户对应的组;当前用户操作
  {
    PrivilegeManagementService privilegeManagementService = (PrivilegeManagementService)StorageService.ctx.getBean("privilegeManagementService");
    if(privilegeManagementService!=null)
    {
      resultInfo = privilegeManagementService.queryGroupsOfUser();//当前用户可以 从会话中获取,无需参数
    }
    return SUCCESS;
  }
 
  public String queryGroupsOfUserByAdmin()//查看任意用户对应的组;管理员操作
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.