blob: e0de595eadbd9aa0032be0b7b62bdc9f993054ba [file] [log] [blame]
Nick Karanatsios758df8d2014-01-14 22:16:32 -08001/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package net.onrc.onos.ofcontroller.flowmanager;
6
7/**
8 *
9 * @author nickkaranatsios
10 */
11public enum DBOperationType {
12 ADD,
13 UPDATE,
14 QUERY,
15 REMOVE,
16 INVALID
17}
18