}
final String dbPassword = clearTextDbPassword;
final String dbUrl = serverProperties.get(ServerProperties.PROP_DATABASE_CONNECTION_URL);
final String dbUsername = serverProperties.get(ServerProperties.PROP_DATABASE_USERNAME);
DBConnectionFactory connectionFactory = new DBConnectionFactory() {
@Override
public Connection newConnection() throws SQLException {
return DbUtil.getConnection(dbUrl, dbUsername, dbPassword);
}
};