org.epos.handler.dbapi.util.LoadCache 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
The newest version!
package org.epos.handler.dbapi.util;
import org.epos.handler.dbapi.DBAPIClient;
import org.epos.handler.dbapi.EPOSDataModel;
public class LoadCache {
public static void loadCache() {
DBAPIClient.DBAPI.values().forEach(EPOSDataModel::getAll);
}
}