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
|
@Entity
@Table(name = "autorisation", schema = "public")
public class Autorisation extends Catalog implements Serializable{
private Long id;
private Set<Utilisateur> utilisateurs = new HashSet<Utilisateur>();
private Set<Role> roles = new HashSet<Role>();
public Autorisation(){}
@Override
@Id
@SequenceGenerator(name = "seq_autorisation", sequenceName = "autorisation_id_seq", allocationSize = 1)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "seq_autorisation")
@Column(name = "id")
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@ManyToMany
public Set<Utilisateur> getUtilisateurs() {
return utilisateurs;
}
public void setUtilisateurs(Set<Utilisateur> utilisateurs) {
this.utilisateurs = utilisateurs;
}
@ManyToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL)
@JoinTable(name = "autorisationRole", schema = "public",
joinColumns = { @JoinColumn(name = "autorisation", nullable = false, updatable = false) },
inverseJoinColumns = { @JoinColumn(name = "role", nullable = false, updatable = false) })
public Set<Role> getRoles() {
return roles;
}
public void setRoles(Set<Role> roles) {
this.roles = roles;
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((id == null) ? 0 : id.hashCode());
result = prime * result + ((roles == null) ? 0 : roles.hashCode());
result = prime * result
+ ((utilisateurs == null) ? 0 : utilisateurs.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
Autorisation other = (Autorisation) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
if (roles == null) {
if (other.roles != null)
return false;
} else if (!roles.equals(other.roles))
return false;
if (utilisateurs == null) {
if (other.utilisateurs != null)
return false;
} else if (!utilisateurs.equals(other.utilisateurs))
return false;
return true;
}
} |
Partager