82 lines
1.9 KiB
Java
82 lines
1.9 KiB
Java
|
|
package com.dbnt.faisp.userInfo.model;
|
||
|
|
|
||
|
|
import com.dbnt.faisp.BaseModel;
|
||
|
|
import lombok.Getter;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
import lombok.Setter;
|
||
|
|
import org.hibernate.annotations.DynamicInsert;
|
||
|
|
import org.hibernate.annotations.DynamicUpdate;
|
||
|
|
import org.springframework.security.core.GrantedAuthority;
|
||
|
|
import org.springframework.security.core.authority.SimpleGrantedAuthority;
|
||
|
|
import org.springframework.security.core.userdetails.UserDetails;
|
||
|
|
|
||
|
|
import javax.persistence.*;
|
||
|
|
import java.util.Collection;
|
||
|
|
import java.util.HashSet;
|
||
|
|
import java.util.Set;
|
||
|
|
|
||
|
|
@Getter
|
||
|
|
@Setter
|
||
|
|
@Entity
|
||
|
|
@NoArgsConstructor
|
||
|
|
@DynamicInsert
|
||
|
|
@DynamicUpdate
|
||
|
|
@Table(name = "user_info")
|
||
|
|
public class UserInfo extends BaseModel implements UserDetails{
|
||
|
|
@Id
|
||
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||
|
|
@Column(name = "user_seq")
|
||
|
|
private Integer userSeq;
|
||
|
|
@Column(name = "user_id")
|
||
|
|
private String userId;
|
||
|
|
@Column(name = "passwd")
|
||
|
|
private String password;
|
||
|
|
@Column(name = "name")
|
||
|
|
private String name;
|
||
|
|
@Column(name = "user_role")
|
||
|
|
private String userRole;
|
||
|
|
@Column(name = "user_status")
|
||
|
|
private String userStatus;
|
||
|
|
|
||
|
|
@Transient
|
||
|
|
private String modifyPassword;
|
||
|
|
@Transient
|
||
|
|
private String positionName;
|
||
|
|
@Transient
|
||
|
|
private String departmentName;
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public Collection<? extends GrantedAuthority> getAuthorities() {
|
||
|
|
Set<GrantedAuthority> roles = new HashSet<>();
|
||
|
|
for (String role : userRole.split(",")) {
|
||
|
|
roles.add(new SimpleGrantedAuthority(role));
|
||
|
|
}
|
||
|
|
return roles;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String getUsername() {
|
||
|
|
return userId;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public boolean isAccountNonExpired() {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public boolean isAccountNonLocked() {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public boolean isCredentialsNonExpired() {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public boolean isEnabled() {
|
||
|
|
return userStatus.equals("ST003");
|
||
|
|
}
|
||
|
|
}
|