Update DAO API
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / dao / ILispDAO.java
index 1bc7d1541d23fd7f466385a5e4d02d046ba7a717..43fbba1d2b32d1206c066fb263d97a41c02fa7da 100644 (file)
@@ -73,4 +73,14 @@ public interface ILispDAO {
      */
     public void removeAll();
 
+    /**
+     * Inserts a new, nested table for given key and subkey. Also acts as factory method.
+     *
+     * @param key
+     *              The key for which a new table is linked in
+     * @param valueKey
+     *              The subkey under which to insert the new table
+     * @return The inserted table
+     */
+    public ILispDAO putNestedTable(Object key, String valueKey);
 }