1 package org.smartlib.pool.core;2 3 import org.smartlib.pool.core.ConnectionLeakListener;4 5 /**6 * Created by IntelliJ IDEA.7 * User: kerneldebugger8 * Date: Oct 2, 20059 * Time: 3:02:37 PM10 * To change this template use File | Settings | File Templates.11 */12 public class LeakDetectorImpl implements ConnectionLeakListener {13 public void connectionTimeOut(ConnectionLeakEvent cle) {14 System.out.println("Leak Detected for a user: " + cle.getOwner());15 }16 }17