protected void localTransactionRolledback() {
ConnectionEvent event = new ConnectionEvent(this, ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK);
Object[] elements = listeners.toArray();
for (int i = 0; i < elements.length; i++) {
ConnectionEventListener eventListener = (ConnectionEventListener) elements[i];
eventListener.localTransactionRolledback(event);
}
}
protected void localTransactionStarted() {
ConnectionEvent event = new ConnectionEvent(this, ConnectionEvent.LOCAL_TRANSACTION_STARTED);