106 lines
2.8 KiB
Java
106 lines
2.8 KiB
Java
package com.dbnt.faisp.userInfo.model;
|
|
|
|
import com.dbnt.faisp.authMgt.model.AccessConfig;
|
|
import com.dbnt.faisp.authMgt.model.ApprovalConfig;
|
|
import com.dbnt.faisp.config.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.time.LocalDateTime;
|
|
import java.util.Collection;
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
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 = "user_nm")
|
|
private String userNm;
|
|
@Column(name = "og_cd")
|
|
private String ogCd;
|
|
@Column(name = "ofc_cd")
|
|
private String ofcCd;
|
|
@Column(name = "user_role")
|
|
private String userRole;
|
|
@Column(name = "user_status")
|
|
private String userStatus;
|
|
@Column(name = "wrt_dt")
|
|
private LocalDateTime wrtDt;
|
|
|
|
@Transient
|
|
private String modifyPassword;
|
|
@Transient
|
|
private String positionName;
|
|
@Transient
|
|
private String departmentName;
|
|
|
|
@Transient
|
|
private List<AccessConfig> accessConfigList;
|
|
@Transient
|
|
private List<ApprovalConfig> approvalConfigList;
|
|
|
|
@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("USC003");
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "UserInfo [userSeq=" + userSeq + ", userId=" + userId + ", password=" + password + ", userNm=" + userNm
|
|
+ ", ogCd=" + ogCd + ", ofcCd=" + ofcCd + ", userRole=" + userRole + ", userStatus=" + userStatus
|
|
+ ", wrtDt=" + wrtDt + ", modifyPassword=" + modifyPassword + ", positionName=" + positionName
|
|
+ ", departmentName=" + departmentName + ", accessConfigList=" + accessConfigList + ", approvalConfigList="
|
|
+ approvalConfigList + "]";
|
|
}
|
|
}
|