summaryrefslogtreecommitdiff
path: root/src/main/scala/eu/mulk/entity/Journal.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/eu/mulk/entity/Journal.java')
-rw-r--r--src/main/scala/eu/mulk/entity/Journal.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/main/scala/eu/mulk/entity/Journal.java b/src/main/scala/eu/mulk/entity/Journal.java
new file mode 100644
index 0000000..63447df
--- /dev/null
+++ b/src/main/scala/eu/mulk/entity/Journal.java
@@ -0,0 +1,67 @@
+package eu.mulk.entity;
+
+import io.quarkus.hibernate.orm.panache.PanacheEntityBase;
+import java.util.Collection;
+import java.util.Objects;
+import javax.persistence.Basic;
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.OneToMany;
+import javax.persistence.Table;
+
+@Entity
+@Table(name = "journals", schema = "public", catalog = "mulkcms")
+public class Journal extends PanacheEntityBase {
+
+ private int id;
+ private String pathPrefix;
+ private Collection<JournalEntry> entries;
+
+ @Id
+ @Column(name = "id", nullable = false)
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ @Basic
+ @Column(name = "path_prefix", nullable = true, length = -1)
+ public String getPathPrefix() {
+ return pathPrefix;
+ }
+
+ public void setPathPrefix(String pathPrefix) {
+ this.pathPrefix = pathPrefix;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Journal journal = (Journal) o;
+ return id == journal.id &&
+ Objects.equals(pathPrefix, journal.pathPrefix);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(id, pathPrefix);
+ }
+
+ @OneToMany(mappedBy = "journal")
+ public Collection<JournalEntry> getEntries() {
+ return entries;
+ }
+
+ public void setEntries(Collection<JournalEntry> entries) {
+ this.entries = entries;
+ }
+}