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 { ...@@ -54,7 +54,7 @@ public class FlowClassifierManager implements FlowClassifierService {
54 protected StorageService storageService; 54 protected StorageService storageService;
55 55
56 @Activate 56 @Activate
57 - private void activate() { 57 + protected void activate() {
58 KryoNamespace.Builder serializer = KryoNamespace.newBuilder() 58 KryoNamespace.Builder serializer = KryoNamespace.newBuilder()
59 .register(KryoNamespaces.API) 59 .register(KryoNamespaces.API)
60 .register(MultiValuedTimestamp.class) 60 .register(MultiValuedTimestamp.class)
...@@ -67,7 +67,7 @@ public class FlowClassifierManager implements FlowClassifierService { ...@@ -67,7 +67,7 @@ public class FlowClassifierManager implements FlowClassifierService {
67 } 67 }
68 68
69 @Deactivate 69 @Deactivate
70 - private void deactivate() { 70 + protected void deactivate() {
71 flowClassifierStore.destroy(); 71 flowClassifierStore.destroy();
72 log.info("Flow Classifier service deactivated"); 72 log.info("Flow Classifier service deactivated");
73 } 73 }
......