Mark historic DataStoreVersions deprecated 14/84714/2
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 25 Sep 2019 10:26:43 +0000 (12:26 +0200)
committerRobert Varga <nite@hq.sk>
Thu, 26 Sep 2019 06:14:10 +0000 (06:14 +0000)
We do not support anything before Boron, hence mark these constants
as deprecated.

Change-Id: Ibda5ab8f5bbcb8136e01018d713685e1e3b6ee7c
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit d5807ff786c63fc0d8272d0bbc83856e35880fcf)

opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/DataStoreVersions.java

index 8e8707941a75885326f367078fcd29f639b0b7dd..80b659eecc1203fee95ab80307debf62b9ebc1af 100644 (file)
@@ -13,9 +13,13 @@ 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;