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

io.github.mmm.orm.spi.access.DbAccessProvider Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package io.github.mmm.orm.spi.access;

import io.github.mmm.orm.source.DbSource;

/**
 * Provider of {@link DbAccess}.
 *
 * @since 1.0.0
 */
public interface DbAccessProvider {

  /**
   * @param source the {@link DbSource}.
   * @return the corresponding {@link DbAccess}.
   */
  DbAccess create(DbSource source);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy