Add flow objective related classes into KryoNamespaces

Change-Id: Ide9e6ab3108c1ad1d6701f1308ed72c282c20693
diff --git a/core/store/serializers/src/main/java/org/onosproject/store/serializers/KryoNamespaces.java b/core/store/serializers/src/main/java/org/onosproject/store/serializers/KryoNamespaces.java
index b0acd3b..9fc833b 100644
--- a/core/store/serializers/src/main/java/org/onosproject/store/serializers/KryoNamespaces.java
+++ b/core/store/serializers/src/main/java/org/onosproject/store/serializers/KryoNamespaces.java
@@ -147,6 +147,13 @@
 import org.onosproject.net.flow.instructions.L2ModificationInstruction;
 import org.onosproject.net.flow.instructions.L3ModificationInstruction;
 import org.onosproject.net.flow.instructions.L4ModificationInstruction;
+import org.onosproject.net.flowobjective.DefaultFilteringObjective;
+import org.onosproject.net.flowobjective.DefaultForwardingObjective;
+import org.onosproject.net.flowobjective.DefaultNextObjective;
+import org.onosproject.net.flowobjective.FilteringObjective;
+import org.onosproject.net.flowobjective.ForwardingObjective;
+import org.onosproject.net.flowobjective.NextObjective;
+import org.onosproject.net.flowobjective.Objective;
 import org.onosproject.net.host.DefaultHostDescription;
 import org.onosproject.net.host.HostDescription;
 import org.onosproject.net.intent.ConnectivityIntent;
@@ -446,7 +453,15 @@
                     DefaultPortStatistics.class,
                     IntentDomainId.class,
                     TableStatisticsEntry.class,
-                    DefaultTableStatisticsEntry.class
+                    DefaultTableStatisticsEntry.class,
+                    // Flow Objectives
+                    DefaultForwardingObjective.class,
+                    ForwardingObjective.Flag.class,
+                    DefaultFilteringObjective.class,
+                    FilteringObjective.Type.class,
+                    DefaultNextObjective.class,
+                    NextObjective.Type.class,
+                    Objective.Operation.class
             )
             .register(new DefaultApplicationIdSerializer(), DefaultApplicationId.class)
             .register(new UriSerializer(), URI.class)