All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.datasource.core.Factory Maven / Gradle / Ivy

package io.ebean.datasource.core;

import io.ebean.datasource.pool.ConnectionPool;
import io.ebean.datasource.DataSourceConfig;
import io.ebean.datasource.DataSourceFactory;
import io.ebean.datasource.DataSourcePool;

/**
 * Service factory implementation.
 */
public class Factory implements DataSourceFactory {

  @Override
  public DataSourcePool createPool(String name, DataSourceConfig config) {
    return new ConnectionPool(name, config);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy