blob: b052540a114c6acee9ad8d758f3e9fc828e4f928 [file] [log] [blame]
/**
*
*/
package net.onrc.onos.ofcontroller.core;
/**
* @author pankaj
*
*/
public interface INetMapStorage {
enum DM_OPERATION {
CREATE, // Create the object type if does not exist and insert the object
INSERT, // Insert the object if it does not exist
DELETE, // Delete the object
UPDATE // Update the object if exists or CREATE/INSERT if does not exist
}
public void init(String conf);
public void close();
}