Mark historic DataStoreVersions deprecated
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / DataStoreVersions.java
index 742c31f9aa7511ae8f8e88b0cf6477c2f932ebf3..78039f60167314755379f14756a82243ec86d31d 100644 (file)
@@ -13,14 +13,19 @@ package org.opendaylight.controller.cluster.datastore;
  * @author Thomas Pantelis
  */
 public final class DataStoreVersions {
+    @Deprecated
     public static final short BASE_HELIUM_VERSION = 0;
+    @Deprecated
     public static final short HELIUM_1_VERSION = 1;
+    @Deprecated
     public static final short HELIUM_2_VERSION = 2;
+    @Deprecated
     public static final short LITHIUM_VERSION = 3;
     public static final short BORON_VERSION = 5;
     public static final short FLUORINE_VERSION = 9;
-    public static final short SODIUM_VERSION = 10;
-    public static final short CURRENT_VERSION = SODIUM_VERSION;
+    public static final short NEON_SR2_VERSION = 10;
+    public static final short SODIUM_SR1_VERSION = 11;
+    public static final short CURRENT_VERSION = NEON_SR2_VERSION;
 
     private DataStoreVersions() {