Helper class for managing common JDBC tasks.
This class is abstract to allow implementations to take advantage of different logging capabilities/interfaces in different parts of the code.
245246247248249250251252253254255
.append(".initialize()"); getLogger().debug( logBuffer.toString() ); } theJDBCUtil = new JDBCUtil() { protected void delegatedLog(String logString) { AbstractJdbcUsersRepository.this.getLogger().warn("AbstractJdbcUsersRepository: " + logString); } };
247248249250251252253254255256257