1 17 18 package org.apache.geronimo.connector.outbound; 19 20 import javax.resource.ResourceException ; 21 22 31 32 public interface ConnectionInterceptor { 33 void getConnection(ConnectionInfo connectionInfo) throws ResourceException ; 34 35 void returnConnection(ConnectionInfo connectionInfo, ConnectionReturnAction connectionReturnAction); 36 37 void destroy(); 38 39 } | Popular Tags |