JSON Codec for FilteredConnectPoint

Change-Id: I5584361daa4b0753e583d97b201d5fa70e182778
diff --git a/core/common/src/main/java/org/onosproject/codec/impl/CodecManager.java b/core/common/src/main/java/org/onosproject/codec/impl/CodecManager.java
index 3f305b6..cd0e7ae 100644
--- a/core/common/src/main/java/org/onosproject/codec/impl/CodecManager.java
+++ b/core/common/src/main/java/org/onosproject/codec/impl/CodecManager.java
@@ -54,6 +54,7 @@
 import org.onosproject.net.MastershipRole;
 import org.onosproject.net.Path;
 import org.onosproject.net.DisjointPath;
+import org.onosproject.net.FilteredConnectPoint;
 import org.onosproject.net.Port;
 import org.onosproject.net.device.PortStatistics;
 import org.onosproject.net.driver.Driver;
@@ -165,6 +166,7 @@
         registerCodec(TrafficStatInfo.class, new TrafficStatInfoCodec());
         registerCodec(ProtocolStatInfo.class, new ProtocolStatInfoCodec());
         registerCodec(FlowStatInfo.class, new FlowStatInfoCodec());
+        registerCodec(FilteredConnectPoint.class, new FilteredConnectPointCodec());
         log.info("Started");
     }
 
diff --git a/core/common/src/main/java/org/onosproject/codec/impl/FilteredConnectPointCodec.java b/core/common/src/main/java/org/onosproject/codec/impl/FilteredConnectPointCodec.java
new file mode 100644
index 0000000..5ffc1c5
--- /dev/null
+++ b/core/common/src/main/java/org/onosproject/codec/impl/FilteredConnectPointCodec.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2016-present Open Networking Laboratory
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.onosproject.codec.impl;
+
+import org.onosproject.codec.CodecContext;
+import org.onosproject.codec.JsonCodec;
+import org.onosproject.net.ConnectPoint;
+import org.onosproject.net.FilteredConnectPoint;
+import org.onosproject.net.flow.TrafficSelector;
+
+import com.fasterxml.jackson.databind.node.ObjectNode;
+
+/**
+ * JSON Codec for {@link FilteredConnectPoint}.
+ */
+public class FilteredConnectPointCodec extends JsonCodec<FilteredConnectPoint> {
+
+    private static final String CONNECT_POINT = "connectPoint";
+    private static final String TRAFFIC_SELECTOR = "trafficSelector";
+
+
+    @Override
+    public ObjectNode encode(FilteredConnectPoint entity,
+                             CodecContext context) {
+        ObjectNode node = context.mapper().createObjectNode();
+        node.set(CONNECT_POINT, context.encode(entity.connectPoint(), ConnectPoint.class));
+        node.set(TRAFFIC_SELECTOR, context.encode(entity.trafficSelector(), TrafficSelector.class));
+        return node;
+    }
+
+    @Override
+    public FilteredConnectPoint decode(ObjectNode json, CodecContext context) {
+        ConnectPoint cp = context.decode(json.get(CONNECT_POINT), ConnectPoint.class);
+        TrafficSelector ts = context.decode(json.get(TRAFFIC_SELECTOR), TrafficSelector.class);
+        return new FilteredConnectPoint(cp, ts);
+    }
+}