blob: dee458a5698ed79488a901b8510012d8ff2834e6 [file] [log] [blame]
yoshi0451f282013-11-22 15:48:55 -08001/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package net.onrc.onos.graph;
6
7/**
8 *
9 * @author nickkaranatsios
10 */
11public abstract class DBConnection implements IDBConnection {
12 public enum Transaction {
13 COMMIT, ROLLBACK
14 }
15
16 public enum GenerateEvent {
17 TRUE, FALSE
18 }
19}