commit | ed9bace5148d58f38851075579242e4a8f5ca241 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@opennetworking.org> | Tue Mar 20 10:05:56 2018 -0700 |
committer | Ray Milkey <ray@opennetworking.org> | Tue Mar 20 17:55:01 2018 +0000 |
tree | 08e3f2df6b61c2086a3f03c2c67c330bd2474d87 | |
parent | bf7598ff39c212b40eaa5db0abf3464997ba8131 [diff] |
Deprecate Distributed Flow Rule Store Change-Id: I4be7543869d44f966a4d20afa44b2bddf837d4d2
diff --git a/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java b/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java index 3395867..32226fd 100644 --- a/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java +++ b/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java
@@ -95,7 +95,10 @@ /** * Manages inventory of flow rules using a distributed state management protocol. + * + * @deprecated in Nightingale Release (1.13) */ +@Deprecated @Component(enabled = false) @Service public class DistributedFlowRuleStore
diff --git a/core/store/dist/src/test/java/org/onosproject/store/flow/impl/DistributedFlowRuleStoreTest.java b/core/store/dist/src/test/java/org/onosproject/store/flow/impl/DistributedFlowRuleStoreTest.java index 449190d..ceac0c2 100644 --- a/core/store/dist/src/test/java/org/onosproject/store/flow/impl/DistributedFlowRuleStoreTest.java +++ b/core/store/dist/src/test/java/org/onosproject/store/flow/impl/DistributedFlowRuleStoreTest.java
@@ -22,6 +22,7 @@ import com.google.common.collect.Multimap; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.onlab.packet.Ip4Address; import org.onosproject.cluster.ClusterService; @@ -62,7 +63,11 @@ /** * Test class for DistributedFlowRuleStore. + * + * @deprecated in Nightingale Release (1.13) */ +@Deprecated +@Ignore("The distributed flow rule store has been deprecated") public class DistributedFlowRuleStoreTest { DistributedFlowRuleStore flowStoreImpl;