Exemplo n.º 1
0
  @Transactional(readOnly = true)
  public UserDetails loadUserByUsername(String userName) throws UsernameNotFoundException {

    org.springframework.security.core.userdetails.User securityUser = null;

    User user = userDao.getUserByName(userName);
    if (user != null) {
      String password = user.getPassword();
      boolean enabled = user.getStatus().equals(UserStatus.ACTIVE);
      boolean accountNonExpired = user.getStatus().equals(UserStatus.ACTIVE);
      boolean credentialsNonExpired = user.getStatus().equals(UserStatus.ACTIVE);
      boolean accountNonLocked = user.getStatus().equals(UserStatus.ACTIVE);

      Collection<GrantedAuthority> authorities = new ArrayList<GrantedAuthority>();
      for (Role role : user.getRoles()) {
        authorities.add(new SimpleGrantedAuthority(role.getName()));
      }
      securityUser =
          new org.springframework.security.core.userdetails.User(
              userName,
              password,
              enabled,
              accountNonExpired,
              credentialsNonExpired,
              accountNonLocked,
              authorities);
      return securityUser;
    } else {
      throw new UsernameNotFoundException("User not defined");
    }
  }
Exemplo n.º 2
0
 @Transactional
 public void addNewUser(UserVo userVo, String userRoleId) {
   List<Role> userRoleList = new ArrayList<Role>();
   User user = new User();
   user.setName(userVo.getName());
   user.setPassword(userVo.getPassword());
   userRoleList.add(roleDao.getRoleById(Integer.valueOf(userRoleId)));
   user.setRoles(userRoleList);
   user.setStatus(UserStatus.ACTIVE);
   userDao.addUser(user);
 }