mirror of https://github.com/apache/openjpa.git
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:
parent
e65f53b43d
commit
c1c32b4d8c
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue