001package gu.sql2java;
002
003public interface TransactionListener{
004    void onBegin();
005        void onCommit();
006    void onEnd();
007}