Cache MapJoiner
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / modification / AbstractModification.java
index 169397bf877168cee54be4fd013870e158c17b0c..02b8047b44bfae5ca1094acc5b26ddfd07890a1b 100644 (file)
@@ -11,19 +11,31 @@ package org.opendaylight.controller.cluster.datastore.modification;
 
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
-import java.io.Serializable;
-
 /**
- * Base class to be used for all simple modifications that can be applied to a DOMStoreTransaction
+ * Base class to be used for all simple modifications that can be applied to a DOMStoreTransaction.
  */
-public abstract class AbstractModification implements Modification,
-    Serializable {
+public abstract class AbstractModification implements Modification {
 
-    private static final long serialVersionUID = 1638042650152084457L;
+    private YangInstanceIdentifier path;
+    private short version;
 
-    protected final YangInstanceIdentifier path;
+    protected AbstractModification(short version) {
+        this.version = version;
+    }
 
     protected AbstractModification(YangInstanceIdentifier path) {
         this.path = path;
     }
+
+    protected void setPath(YangInstanceIdentifier path) {
+        this.path = path;
+    }
+
+    public YangInstanceIdentifier getPath() {
+        return path;
+    }
+
+    public short getVersion() {
+        return version;
+    }
 }