io.github.mmm.orm.spi.access.DbAccessProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-orm-spi Show documentation
Show all versions of mmm-orm-spi Show documentation
Service Provider API (SPI) for mmm-orm.
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);
}