Import autogenerated JPA entities.
Adds JPA entities generated by IntelliJ for all existing tables in the
database.
Change-Id: Iac957b5d68ce45328db87487f105522f8595e124
diff --git a/src/main/scala/eu/mulk/entity/Comment.java b/src/main/scala/eu/mulk/entity/Comment.java
new file mode 100644
index 0000000..4a32706
--- /dev/null
+++ b/src/main/scala/eu/mulk/entity/Comment.java
@@ -0,0 +1,80 @@
+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.JoinColumn;
+import javax.persistence.ManyToOne;
+import javax.persistence.OneToMany;
+import javax.persistence.Table;
+
+@Entity
+@Table(name = "comments", schema = "public", catalog = "mulkcms")
+public class Comment extends PanacheEntityBase {
+
+ private int id;
+ private String globalId;
+ private Collection<CommentRevision> revisions;
+ private Article article;
+
+ @Id
+ @Column(name = "id", nullable = false)
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ @Basic
+ @Column(name = "global_id", nullable = true, length = -1)
+ public String getGlobalId() {
+ return globalId;
+ }
+
+ public void setGlobalId(String globalId) {
+ this.globalId = globalId;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Comment comment = (Comment) o;
+ return id == comment.id &&
+ Objects.equals(globalId, comment.globalId);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(id, globalId);
+ }
+
+ @OneToMany(mappedBy = "comment")
+ public Collection<CommentRevision> getRevisions() {
+ return revisions;
+ }
+
+ public void setRevisions(Collection<CommentRevision> revisions) {
+ this.revisions = revisions;
+ }
+
+ @ManyToOne
+ @JoinColumn(name = "article", referencedColumnName = "id", nullable = false)
+ public Article getArticle() {
+ return article;
+ }
+
+ public void setArticle(Article article) {
+ this.article = article;
+ }
+}