-m.mmm-orm-spi.0.9.11.source-code.module-info 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.
The newest version!
/*
* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
/**
* Provides database support for {@code mmm-entity-bean}.
*
* @provides io.github.mmm.orm.spi.session.DbEntitySessionFactory
* @uses io.github.mmm.orm.spi.access.DbAccessProvider
* @uses io.github.mmm.orm.spi.session.DbEntitySessionFactory
* @uses io.github.mmm.orm.connection.DbConnectionPoolProvider
*/
@SuppressWarnings("rawtypes") //
module io.github.mmm.orm.spi {
requires transitive io.github.mmm.orm;
requires java.sql;
uses io.github.mmm.orm.connection.DbConnectionPoolProvider;
uses io.github.mmm.orm.spi.access.DbAccessProvider;
exports io.github.mmm.orm.spi.access;
exports io.github.mmm.orm.spi.repository;
exports io.github.mmm.orm.spi.sequence;
exports io.github.mmm.orm.spi.session;
exports io.github.mmm.orm.connection;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy