001package org.avaje.datasource;
002
003import org.avaje.datasource.pool.ConnectionPool;
004
005/**
006 * Service factory implementation.
007 */
008public class Factory implements DataSourceFactory {
009
010  @Override
011  public DataSourcePool createPool(String name, DataSourceConfig config) {
012    return new ConnectionPool(name, config);
013  }
014}