abstractapis.AbstractRelationsAPI 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 abstractapis;
import dao.EposDataModelDAO;
import org.epos.eposdatamodel.LinkedEntity;
public abstract class AbstractRelationsAPI {
protected static EposDataModelDAO dbaccess = new EposDataModelDAO();
public static EposDataModelDAO getDbaccess(){
return dbaccess;
}
}