Brian O'Connor

Disabling FlowRuleExtService components

Change-Id: Ia4a53da3af577280966ad06cb343bcdb4eb68d01
...@@ -62,7 +62,7 @@ import static org.slf4j.LoggerFactory.getLogger; ...@@ -62,7 +62,7 @@ import static org.slf4j.LoggerFactory.getLogger;
62 /** 62 /**
63 * Experimental extension to the flow rule subsystem; still under development. 63 * Experimental extension to the flow rule subsystem; still under development.
64 */ 64 */
65 -@Component(immediate = false) 65 +@Component(immediate = true, enabled = false)
66 @Service 66 @Service
67 public class FlowRuleExtManager extends FlowRuleManager 67 public class FlowRuleExtManager extends FlowRuleManager
68 implements FlowRuleExtService { 68 implements FlowRuleExtService {
......
...@@ -71,7 +71,7 @@ import static org.slf4j.LoggerFactory.getLogger; ...@@ -71,7 +71,7 @@ import static org.slf4j.LoggerFactory.getLogger;
71 * Implement a simple routing-like mechanism to directly send service data to its master and push to device. 71 * Implement a simple routing-like mechanism to directly send service data to its master and push to device.
72 * This Router does not save any flow rule extension data in cache, it focus on routing mechanism. 72 * This Router does not save any flow rule extension data in cache, it focus on routing mechanism.
73 */ 73 */
74 -@Component(immediate = false) 74 +@Component(immediate = true, enabled = false)
75 @Service 75 @Service
76 public class DefaultFlowRuleExtRouter 76 public class DefaultFlowRuleExtRouter
77 implements FlowRuleExtRouter { 77 implements FlowRuleExtRouter {
......