Madan Jampani
Committed by Gerrit Code Review

Added missing types in kryo API namespace

Change-Id: If392cb15243cc5e0f483a6b3375e53afc495acbc
...@@ -158,8 +158,6 @@ public class NewDistributedFlowRuleStore ...@@ -158,8 +158,6 @@ public class NewDistributedFlowRuleStore
158 serializerPool = KryoNamespace.newBuilder() 158 serializerPool = KryoNamespace.newBuilder()
159 .register(DistributedStoreSerializers.STORE_COMMON) 159 .register(DistributedStoreSerializers.STORE_COMMON)
160 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN) 160 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN)
161 - .register(FlowRuleEvent.class)
162 - .register(FlowRuleEvent.Type.class)
163 .build(); 161 .build();
164 } 162 }
165 }; 163 };
......
...@@ -89,6 +89,7 @@ import org.onosproject.net.flow.FlowRuleBatchEntry; ...@@ -89,6 +89,7 @@ import org.onosproject.net.flow.FlowRuleBatchEntry;
89 import org.onosproject.net.flow.FlowRuleBatchEvent; 89 import org.onosproject.net.flow.FlowRuleBatchEvent;
90 import org.onosproject.net.flow.FlowRuleBatchOperation; 90 import org.onosproject.net.flow.FlowRuleBatchOperation;
91 import org.onosproject.net.flow.FlowRuleBatchRequest; 91 import org.onosproject.net.flow.FlowRuleBatchRequest;
92 +import org.onosproject.net.flow.FlowRuleEvent;
92 import org.onosproject.net.flow.FlowRuleExtPayLoad; 93 import org.onosproject.net.flow.FlowRuleExtPayLoad;
93 import org.onosproject.net.flow.StoredFlowEntry; 94 import org.onosproject.net.flow.StoredFlowEntry;
94 import org.onosproject.net.flow.criteria.Criterion; 95 import org.onosproject.net.flow.criteria.Criterion;
...@@ -343,6 +344,8 @@ public final class KryoNamespaces { ...@@ -343,6 +344,8 @@ public final class KryoNamespaces {
343 FlowRuleBatchEvent.Type.class, 344 FlowRuleBatchEvent.Type.class,
344 FlowRuleBatchRequest.class, 345 FlowRuleBatchRequest.class,
345 FlowRuleBatchOperation.class, 346 FlowRuleBatchOperation.class,
347 + FlowRuleEvent.class,
348 + FlowRuleEvent.Type.class,
346 CompletedBatchOperation.class, 349 CompletedBatchOperation.class,
347 FlowRuleBatchEntry.class, 350 FlowRuleBatchEntry.class,
348 FlowRuleBatchEntry.FlowRuleOperation.class, 351 FlowRuleBatchEntry.FlowRuleOperation.class,
......