blob: 67c66317530ed18336b92667b86305a264c8e6ee [file] [log] [blame]
Pankaj Berdee73452c2013-01-03 14:57:07 -08001/**
2 *
3 */
4package net.floodlightcontroller.core;
5
6/**
7 * @author pankaj
8 *
9 */
10public interface INetMapStorage {
11 enum DM_OPERATION {
12 CREATE, // Create the object type if does not exist and insert the object
13 INSERT, // Insert the object if it does not exist
14 DELETE, // Delete the object
15 UPDATE // Update the object if exists or CREATE/INSERT if does not exist
16 }
Pankaj Berde4dea3462013-01-03 18:02:38 -080017 public void init(String conf);
Pankaj Berded18c7622013-02-04 10:28:35 -080018 public void close();
Pankaj Berdee73452c2013-01-03 14:57:07 -080019}