blob: dee458a5698ed79488a901b8510012d8ff2834e6 [file] [log] [blame]
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.onrc.onos.graph;
/**
*
* @author nickkaranatsios
*/
public abstract class DBConnection implements IDBConnection {
public enum Transaction {
COMMIT, ROLLBACK
}
public enum GenerateEvent {
TRUE, FALSE
}
}