1 24 25 package org.objectweb.cjdbc.scenario.tools.testlet; 26 27 import java.sql.Connection ; 28 29 36 public abstract class AbstractConnectionTestLet extends AbstractTestLet 37 { 38 39 protected Connection jdbcConnection; 40 41 46 public AbstractConnectionTestLet(Connection con) 47 { 48 super(); 49 this.jdbcConnection = con; 50 } 51 52 57 public Connection getJdbcConnection() 58 { 59 return jdbcConnection; 60 } 61 62 67 public void setJdbcConnection(Connection jdbcConnection) 68 { 69 this.jdbcConnection = jdbcConnection; 70 } 71 } | Popular Tags |