blob: e553b5db5c776afe6ca2e22baefb8ce64896a7d3 [file] [log] [blame]
package eu.mulk.mulkcms2.cms.users;
import jakarta.persistence.Column;
import jakarta.persistence.Id;
import java.io.Serializable;
import java.util.Objects;
public class PasswordPK implements Serializable {
private int userId;
private String password;
@Column(name = "user", nullable = false)
@Id
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
@Column(name = "password", nullable = false, length = -1)
@Id
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PasswordPK that = (PasswordPK) o;
return userId == that.userId && Objects.equals(password, that.password);
}
@Override
public int hashCode() {
return Objects.hash(userId, password);
}
}