Brian O'Connor

Disabling FlowRuleExtService components

Change-Id: Ia4a53da3af577280966ad06cb343bcdb4eb68d01
......@@ -62,7 +62,7 @@ import static org.slf4j.LoggerFactory.getLogger;
/**
* 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 {
......
......@@ -71,7 +71,7 @@ import static org.slf4j.LoggerFactory.getLogger;
* 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 {
......