Move address-bindings config to new config system

Change-Id: I6d87ddbf98789dbe8355c453a3263f50fbc5d99c
diff --git a/incubator/api/src/main/java/org/onosproject/incubator/net/config/Config.java b/incubator/api/src/main/java/org/onosproject/incubator/net/config/Config.java
index 12f3114..2be2fba 100644
--- a/incubator/api/src/main/java/org/onosproject/incubator/net/config/Config.java
+++ b/incubator/api/src/main/java/org/onosproject/incubator/net/config/Config.java
@@ -151,6 +151,33 @@
     }
 
     /**
+     * Gets the specified property as an integer.
+     *
+     * @param name         property name
+     * @param defaultValue default value if property not set
+     * @return property value or default value
+     */
+    protected int get(String name, int defaultValue) {
+        return node.path(name).asInt(defaultValue);
+    }
+
+    /**
+     * Sets the specified property as an integer or clears it if null value given.
+     *
+     * @param name  property name
+     * @param value new value or null to clear the property
+     * @return self
+     */
+    protected Config<S> setOrClear(String name, Integer value) {
+        if (value != null) {
+            node.put(name, value.intValue());
+        } else {
+            node.remove(name);
+        }
+        return this;
+    }
+
+    /**
      * Gets the specified property as a long.
      *
      * @param name         property name
@@ -231,4 +258,5 @@
         }
         return this;
     }
+
 }
diff --git a/incubator/api/src/main/java/org/onosproject/incubator/net/config/NetworkConfigService.java b/incubator/api/src/main/java/org/onosproject/incubator/net/config/NetworkConfigService.java
index fb0c48f..455ed68 100644
--- a/incubator/api/src/main/java/org/onosproject/incubator/net/config/NetworkConfigService.java
+++ b/incubator/api/src/main/java/org/onosproject/incubator/net/config/NetworkConfigService.java
@@ -58,7 +58,7 @@
      * @param configKey subject class name
      * @return subject class
      */
-    Class<? extends Config> getConfigClass(String configKey);
+    Class<? extends Config> getConfigClass(String subjectKey, String configKey);
 
     /**
      * Returns the set of subjects for which some configuration is available.
diff --git a/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/BasicPortConfig.java b/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/BasicPortConfig.java
new file mode 100644
index 0000000..5fcc43e
--- /dev/null
+++ b/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/BasicPortConfig.java
@@ -0,0 +1,158 @@
+/*
+ * Copyright 2015 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.incubator.net.config.basics;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.fasterxml.jackson.databind.node.ArrayNode;
+import com.google.common.collect.Sets;
+import org.onlab.packet.MacAddress;
+import org.onlab.packet.VlanId;
+import org.onosproject.incubator.net.config.Config;
+import org.onosproject.net.ConnectPoint;
+import org.onosproject.net.host.InterfaceIpAddress;
+
+import java.util.Iterator;
+import java.util.Set;
+
+/**
+ * Basic configuration for a port on a device.
+ */
+public class BasicPortConfig extends Config<ConnectPoint> {
+    public static final String IPS = "ips";
+    public static final String MAC = "mac";
+    public static final String VLAN = "vlan";
+
+    /**
+     * Returns the set of IP addresses assigned to the port.
+     *
+     * @return set ip IP addresses
+     */
+    public Set<InterfaceIpAddress> ips() {
+        Set<InterfaceIpAddress> ips = Sets.newHashSet();
+
+        JsonNode ipsNode = node.get(IPS);
+        ipsNode.forEach(jsonNode -> ips.add(InterfaceIpAddress.valueOf(jsonNode.asText())));
+
+        return ips;
+    }
+
+    /**
+     * Adds an IP address to configuration of the port.
+     *
+     * @param ip ip address to add
+     * @return this
+     */
+    public BasicPortConfig addIp(InterfaceIpAddress ip) {
+        ArrayNode ipsNode = (ArrayNode) node.get(IPS);
+        if (ipsNode == null) {
+            ipsNode = node.putArray(IPS);
+        }
+
+        // Check if the value is already there
+        if (ipsNode.findValue(ip.toString()) != null) {
+            ipsNode.add(ip.toString());
+        }
+
+        return this;
+    }
+
+    /**
+     * Removes an IP address from the configuration of the port.
+     *
+     * @param ip ip address to remove
+     * @return this
+     */
+    public BasicPortConfig removeIp(InterfaceIpAddress ip) {
+        ArrayNode ipsNode = (ArrayNode) node.get(IPS);
+
+        if (ipsNode != null) {
+            if (ipsNode.size() == 1) {
+                node.remove(IPS);
+            } else {
+                Iterator<JsonNode> it = ipsNode.iterator();
+                while (it.hasNext()) {
+                    if (it.next().asText().equals(ip.toString())) {
+                        it.remove();
+                        break;
+                    }
+                }
+            }
+        }
+
+        return this;
+    }
+
+    /**
+     * Clear all IP addresses from the configuration.
+     *
+     * @return this
+     */
+    public BasicPortConfig clearIps() {
+        node.remove(IPS);
+        return this;
+    }
+
+    /**
+     * Returns the MAC address configured on the port.
+     *
+     * @return MAC address
+     */
+    public MacAddress mac() {
+        JsonNode macNode = node.get(MAC);
+        if (macNode == null) {
+            return null;
+        }
+
+        return MacAddress.valueOf(macNode.asText());
+    }
+
+    /**
+     * Sets the MAC address configured on the port.
+     *
+     * @param mac MAC address
+     * @return this
+     */
+    public BasicPortConfig mac(MacAddress mac) {
+        String macString = (mac == null) ? null : mac.toString();
+        return (BasicPortConfig) setOrClear(MAC, macString);
+    }
+
+    /**
+     * Returns the VLAN configured on the port.
+     *
+     * @return VLAN ID
+     */
+    public VlanId vlan() {
+        JsonNode macNode = node.get(VLAN);
+        if (macNode == null) {
+            return null;
+        }
+
+        return VlanId.vlanId(Short.parseShort(macNode.asText()));
+    }
+
+    /**
+     * Sets the VLAN configured on the port.
+     *
+     * @param vlan VLAN ID
+     * @return this
+     */
+    public BasicPortConfig vlan(VlanId vlan) {
+        Integer vlanId = (vlan == null) ? null : Integer.valueOf(vlan.toShort());
+        return (BasicPortConfig) setOrClear(VLAN, vlanId);
+    }
+}
diff --git a/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/SubjectFactories.java b/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/SubjectFactories.java
index 257bd27..fe548df 100644
--- a/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/SubjectFactories.java
+++ b/incubator/api/src/main/java/org/onosproject/incubator/net/config/basics/SubjectFactories.java
@@ -50,6 +50,14 @@
                 }
             };
 
+    public static final SubjectFactory<ConnectPoint> CONNECT_POINT_SUBJECT_FACTORY =
+            new SubjectFactory<ConnectPoint>(ConnectPoint.class, "ports") {
+                @Override
+                public ConnectPoint createSubject(String key) {
+                    return ConnectPoint.deviceConnectPoint(key);
+                }
+            };
+
     public static final SubjectFactory<HostId> HOST_SUBJECT_FACTORY =
             new SubjectFactory<HostId>(HostId.class, "hosts") {
                 @Override