Package net.userSystem.userKind.service

Examples of net.userSystem.userKind.service.UserKindService


      user=userService.getUserById(id);
    }else{
      user=new User();
    }
    UserRoleService userRoleService=(UserRoleService) SpringContext.getBean("userRoleService");
    UserKindService userKindService=(UserKindService) SpringContext.getBean("userKindService");
    List<Map<String, String>> roleList=userRoleService.getAllUserRole();
    List<Map<String, String>> kindList=userKindService.getAllUserKind();
    getRequest().setAttribute("roleList", roleList);
    getRequest().setAttribute("kindList", kindList);
    return SUCCESS;
  }
View Full Code Here

TOP

Related Classes of net.userSystem.userKind.service.UserKindService

Copyright © 2018 www.massapicom. 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.