commit | 916de34f16461b6036112e6ecea3c40165b1fda5 | [log] [tgz] |
---|---|---|
author | Brian O'Connor <bocon@onlab.us> | Tue Feb 17 18:07:32 2015 -0800 |
committer | Brian O'Connor <bocon@onlab.us> | Tue Feb 17 18:07:32 2015 -0800 |
tree | cd545f510b0d31a2017179844ab462f68e0f70a9 | |
parent | 2e3f856aa263f8f91d2636786c23b47f140227f2 [diff] |
Disabling FlowRuleExtService components Change-Id: Ia4a53da3af577280966ad06cb343bcdb4eb68d01
diff --git a/core/net/src/main/java/org/onosproject/net/flowext/impl/FlowRuleExtManager.java b/core/net/src/main/java/org/onosproject/net/flowext/impl/FlowRuleExtManager.java index 5a64b1d..a6f851b 100644 --- a/core/net/src/main/java/org/onosproject/net/flowext/impl/FlowRuleExtManager.java +++ b/core/net/src/main/java/org/onosproject/net/flowext/impl/FlowRuleExtManager.java
@@ -62,7 +62,7 @@ /** * Experimental extension to the flow rule subsystem; still under development. */ -@Component(immediate = false) +@Component(immediate = true, enabled = false) @Service public class FlowRuleExtManager extends FlowRuleManager implements FlowRuleExtService {
diff --git a/core/store/dist/src/main/java/org/onosproject/store/flowext/impl/DefaultFlowRuleExtRouter.java b/core/store/dist/src/main/java/org/onosproject/store/flowext/impl/DefaultFlowRuleExtRouter.java index 033e0b8..edf38f3 100644 --- a/core/store/dist/src/main/java/org/onosproject/store/flowext/impl/DefaultFlowRuleExtRouter.java +++ b/core/store/dist/src/main/java/org/onosproject/store/flowext/impl/DefaultFlowRuleExtRouter.java
@@ -71,7 +71,7 @@ * Implement a simple routing-like mechanism to directly send service data to its master and push to device. * This Router does not save any flow rule extension data in cache, it focus on routing mechanism. */ -@Component(immediate = false) +@Component(immediate = true, enabled = false) @Service public class DefaultFlowRuleExtRouter implements FlowRuleExtRouter {