Madan Jampani
Committed by Gerrit Code Review

Refactor: Rename NewDistributedFlowRuleStore.java -> DistributedFlowRuleStore.java

Change-Id: Idc4864b10f7f2e4cc92a9a25f1fa74835148eab8
......@@ -178,7 +178,7 @@ public class IntentPerfInstaller {
workers = Executors.newFixedThreadPool(DEFAULT_NUM_WORKERS, groupedThreads("onos/intent-perf", "worker-%d"));
// disable flow backups for testing
configService.setProperty("org.onosproject.store.flow.impl.NewDistributedFlowRuleStore",
configService.setProperty("org.onosproject.store.flow.impl.DistributedFlowRuleStore",
"backupEnabled", "true");
// TODO: replace with shared executor
......
......@@ -107,7 +107,7 @@ package org.onosproject.store.flow.impl;
*/
@Component(immediate = true, enabled = true)
@Service
public class NewDistributedFlowRuleStore
public class DistributedFlowRuleStore
extends AbstractStore<FlowRuleBatchEvent, FlowRuleStoreDelegate>
implements FlowRuleStore {
......