blob: 8de368d910f0a8634491fc804635815a38876626 [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 }
17
18}