1 23 24 package javax.resource.spi; 25 26 import java.util.EventListener ; 27 import javax.resource.ResourceException ; 28 29 47 48 public interface ConnectionEventListener 49 extends java.util.EventListener { 50 51 62 public 63 void connectionClosed(ConnectionEvent event); 64 65 71 public 72 void localTransactionStarted(ConnectionEvent event); 73 74 80 public 81 void localTransactionCommitted(ConnectionEvent event); 82 83 89 public 90 void localTransactionRolledback(ConnectionEvent event); 91 92 113 public 114 void connectionErrorOccurred(ConnectionEvent event); 115 116 } 117 | Popular Tags |