summaryrefslogtreecommitdiff
path: root/src/main/scala/eu/mulk/entity/LoginCertificatePK.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/eu/mulk/entity/LoginCertificatePK.java')
-rw-r--r--src/main/scala/eu/mulk/entity/LoginCertificatePK.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/main/scala/eu/mulk/entity/LoginCertificatePK.java b/src/main/scala/eu/mulk/entity/LoginCertificatePK.java
deleted file mode 100644
index b9035f5..0000000
--- a/src/main/scala/eu/mulk/entity/LoginCertificatePK.java
+++ /dev/null
@@ -1,53 +0,0 @@
-package eu.mulk.entity;
-
-import java.io.Serializable;
-import java.util.Arrays;
-import java.util.Objects;
-import javax.persistence.Column;
-import javax.persistence.Id;
-
-public class LoginCertificatePK implements Serializable {
-
- private int userId;
- private byte[] certificate;
-
- @Column(name = "user", nullable = false)
- @Id
- public int getUserId() {
- return userId;
- }
-
- public void setUserId(int userId) {
- this.userId = userId;
- }
-
- @Column(name = "certificate", nullable = false)
- @Id
- public byte[] getCertificate() {
- return certificate;
- }
-
- public void setCertificate(byte[] certificate) {
- this.certificate = certificate;
- }
-
- @Override
- public boolean equals(Object o) {
- if (this == o) {
- return true;
- }
- if (o == null || getClass() != o.getClass()) {
- return false;
- }
- LoginCertificatePK that = (LoginCertificatePK) o;
- return userId == that.userId &&
- Arrays.equals(certificate, that.certificate);
- }
-
- @Override
- public int hashCode() {
- int result = Objects.hash(userId);
- result = 31 * result + Arrays.hashCode(certificate);
- return result;
- }
-}