OPENJPA-266 Allowing PreparedStatementManagerImpl to be extendable

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@550977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2007-06-26 22:43:25 +00:00
parent e65f53b43d
commit c1c32b4d8c
1 changed files with 4 additions and 4 deletions

View File

@ -40,15 +40,15 @@ import org.apache.openjpa.util.OptimisticException;
*
* @author Abe White
*/
class PreparedStatementManagerImpl
public class PreparedStatementManagerImpl
implements PreparedStatementManager {
private final static Localizer _loc = Localizer
.forPackage(PreparedStatementManagerImpl.class);
private final JDBCStore _store;
private final Connection _conn;
private final DBDictionary _dict;
protected final JDBCStore _store;
protected final Connection _conn;
protected final DBDictionary _dict;
// track exceptions
private final Collection _exceptions = new LinkedList();