blob: 2cf0e189c700ac2b263cde4b6eb97978a9c8a8de [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(final String dbStore, final String conf);
public void close();
}