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