]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffIssue.java
add some private constructors with no arg, some getters & setters and some ids to...
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / diff / DiffIssue.java
index 0caef2f10105f7cbe68f3f1015270334aea89a33..041ec6465008c18f7d5843101e3ecc0a580730a7 100644 (file)
@@ -19,7 +19,11 @@ package org.argeo.slc.diff;
 /** The root class for issues which happened during a diff. */\r
 public abstract class DiffIssue implements Comparable<DiffIssue> {\r
        /** The position of this issue. */\r
-       protected final DiffPosition position;\r
+       // Was final and is not anymore in order to persist in hibernate\r
+       protected DiffPosition position;\r
+\r
+       // hibernate\r
+       private long id;\r
 \r
        /** Constructor */\r
        public DiffIssue(DiffPosition position) {\r
@@ -35,4 +39,21 @@ public abstract class DiffIssue implements Comparable<DiffIssue> {
        public DiffPosition getPosition() {\r
                return position;\r
        }\r
+\r
+       // Hibernate\r
+       @SuppressWarnings("unused")\r
+       private void setId(long id) {\r
+               this.id = id;\r
+       }\r
+\r
+       @SuppressWarnings("unused")\r
+       private long getId() {\r
+               return id;\r
+       }\r
+\r
+       @SuppressWarnings("unused")\r
+       private void setPosition(DiffPosition position) {\r
+               this.position = position;\r
+       }\r
+\r
 }\r