Examples of AppRole


Examples of net.sf.mark.authority.po.AppRole

  public void delete(AppRole instance) {
    roleDao.delete(instance);
  }
 
  public RoleAuthDTO findRoleAuthDTO(String id) {
    AppRole role = findById(id);
    return new RoleAuthDTO(role, role.getAppAuths(), authDao.findAll());
  }
View Full Code Here

Examples of net.sf.mark.authority.po.AppRole

    return new RoleAuthDTO(role, role.getAppAuths(), authDao.findAll());
  }

  public void saveRoleAuths(String id, String[] selectedAuthIds) {
    try {
      AppRole role = findById(id);
      Set<AppAuth> appAuths = role.getAppAuths();
      appAuths.clear();
      if (selectedAuthIds != null) {
        for (String authId : selectedAuthIds) {
          appAuths.add(authDao.findById(authId));
        }
View Full Code Here

Examples of net.sf.mark.authority.po.AppRole

  @Override
  protected void prepareModel() throws Exception {
    if (StringUtils.isNotBlank(filterId)) {
      entity = roleService.findById(filterId);
    } else {
      entity = new AppRole();
    }
  }
View Full Code Here

Examples of net.sf.mark.authority.po.AppRole

    AppUser instance = new AppUser();
    instance.setUserLoginName("admin");
    instance.setUserPassword("admin");
    instance.setUserEmail("marksong@163.com");
    instance.setUserNickName("马克");
    AppRole role = new AppRole();
    role.setRoleName("管理员");
    instance.getAppRoles().add(role);
    roleService.saveOrUpdate(role);
    userService.saveOrUpdate(instance);
  }
View Full Code Here

Examples of net.sf.mark.authority.po.AppRole

 
  @Test
  public void test() {
    AppUser instance = userService.findById(USER_ID);
 
    AppRole roleInstance = roleService.findById(ROLE_ID);
   
    Set<AppRole> roles = instance.getAppRoles();
   
    roles.remove(roleInstance);
    userService.saveOrUpdate(instance);
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.