commit | a66a05635cd68430c4f4cfc7ee302ece74f9e5fe | [log] [tgz] |
---|---|---|
author | alshabib <alshabibi.ali@gmail.com> | Tue Feb 17 15:50:54 2015 -0800 |
committer | alshabib <alshabibi.ali@gmail.com> | Tue Feb 17 15:50:54 2015 -0800 |
tree | 975619ab7847b06f55e55a1f5c7a80be8b38b47e | |
parent | 7c4457515045be3240320f2875dba78c5358176a [diff] |
do not initialise the flowext subsystem Change-Id: I760a95a27fce91c80b5f5f3d396c80e4b0eca378
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 03148ae..5a64b1d 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 = true) +@Component(immediate = 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 4ae14dd..033e0b8 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 = true) +@Component(immediate = false) @Service public class DefaultFlowRuleExtRouter implements FlowRuleExtRouter {