User.java
1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package fr.plil.sio.web.mvc;
import com.fasterxml.jackson.annotation.JsonManagedReference;
import java.util.ArrayList;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import javax.persistence.*;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
@Entity
@Table(name = "USER_T")
public class User implements UserDetails {
@Id
@Column(name = "USER_ID")
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(name = "USERNAME_F")
private String username;
@Column(name = "PASSWORD_F")
private String password;
@OneToMany(mappedBy="holderOfDebt",cascade = CascadeType.REMOVE)
private List<Dette> dettes = new ArrayList<Dette>();
public List<Dette> getDettes() {
return dettes;
}
public void setDettes(List<Dette> dettes) {
this.dettes = dettes;
}
@ManyToMany(mappedBy = "users", fetch = FetchType.EAGER)
@JsonManagedReference
private Set<Role> roles = new TreeSet<>();
public Set<Role> getRoles() {
return roles;
}
public void setRoles(Set<Role> roles) {
this.roles = roles;
}
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
return roles;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
@Override
public boolean isAccountNonExpired() {
return true;
}
@Override
public boolean isAccountNonLocked() {
return true;
}
@Override
public boolean isCredentialsNonExpired() {
return true;
}
@Override
public boolean isEnabled() {
return true;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}