ru.abyss.settings.importer.Importer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abyss-export Show documentation
Show all versions of abyss-export Show documentation
DB import/export library for Abyss ACS
/*
* Copyright Бездна (c) 2018.
*/
package ru.abyss.settings.importer;
import java.sql.Connection;
import ru.abyss.settings.ProgressCallback;
/**
* @author Minu <[email protected]>
* @since 05.06.2018 11:46:53
*/
public interface Importer {
public void doImport(Connection h2Connection, Connection pgConnection, Long factoryId, Long userId, boolean isOwnFactory,
boolean isLoadPrices, boolean isLoadConsistRemains, boolean isLoadContractors, boolean isLoad1C, ProgressCallback callback) throws Exception;
}