1 17 18 package org.apache.geronimo.connector.outbound.connectiontracking; 19 20 import org.apache.geronimo.connector.outbound.ConnectionInfo; 21 import org.apache.geronimo.connector.outbound.ConnectionTrackingInterceptor; 22 23 29 public interface ConnectionTracker { 30 void handleObtained( 31 ConnectionTrackingInterceptor connectionTrackingInterceptor, 32 ConnectionInfo connectionInfo); 33 34 void handleReleased( 35 ConnectionTrackingInterceptor connectionTrackingInterceptor, 36 ConnectionInfo connectionInfo); 37 38 void setEnvironment(ConnectionInfo connectionInfo, String key); 39 40 } 41 | Popular Tags |