1 22 package org.enhydra.jdbc.pool; 23 24 import java.sql.SQLException ; 25 26 31 public interface PoolHelper { 32 33 public void expire(Object o); public boolean checkThisObject(Object o); 35 public boolean testThisObject(Object o); public GenerationObject create() throws SQLException ; 38 public GenerationObject create(String _user, String _password) 39 throws SQLException ; 40 public String toString(); 41 } 42 | Popular Tags |