]> 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 5517b3a662b31e7704cbee4bcb02f35b176f9077..041ec6465008c18f7d5843101e3ecc0a580730a7 100644 (file)
@@ -1,9 +1,29 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *         http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
 package org.argeo.slc.diff;\r
 \r
 /** 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
@@ -19,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