org.epos.handler.dbapi.service.DBService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of db-api Show documentation
Show all versions of db-api Show documentation
EPOS Database APIs useful to interact with EPOS Metadata Catalogue
package org.epos.handler.dbapi.service;
import jakarta.persistence.EntityManager;
public class DBService implements EntityManagerHandler {
public DBService() {
}
public EntityManager getEntityManager() {
return EntityManagerFactoryProvider.getInstance().createEntityManager();
}
}