Mahesh Poojary S
Committed by Gerrit Code Review

[ONOS-3114] Flow Classifier Manager

Change-Id: I10946a8433a0fa9d2ffc628ec63ccf3f2b317dbd
......@@ -54,7 +54,7 @@ public class FlowClassifierManager implements FlowClassifierService {
protected StorageService storageService;
@Activate
private void activate() {
protected void activate() {
KryoNamespace.Builder serializer = KryoNamespace.newBuilder()
.register(KryoNamespaces.API)
.register(MultiValuedTimestamp.class)
......@@ -67,7 +67,7 @@ public class FlowClassifierManager implements FlowClassifierService {
}
@Deactivate
private void deactivate() {
protected void deactivate() {
flowClassifierStore.destroy();
log.info("Flow Classifier service deactivated");
}
......