1 18 package org.apache.activemq.ra; 19 20 import javax.resource.spi.ConnectionEvent ; 21 import javax.resource.spi.ConnectionEventListener ; 22 23 24 27 public class ConnectionEventListenerAdapter implements ConnectionEventListener { 28 29 32 public void connectionClosed(ConnectionEvent arg0) { 33 } 34 35 38 public void localTransactionStarted(ConnectionEvent arg0) { 39 } 40 41 44 public void localTransactionCommitted(ConnectionEvent arg0) { 45 } 46 47 50 public void localTransactionRolledback(ConnectionEvent arg0) { 51 } 52 53 56 public void connectionErrorOccurred(ConnectionEvent arg0) { 57 } 58 } 59 | Popular Tags |