org.molgenis.file.ingest.execution.FileStoreDownload Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-file-ingester Show documentation
Show all versions of molgenis-file-ingester Show documentation
File ingestion from remote URLs.
package org.molgenis.file.ingest.execution;
import java.io.File;
/** Downloads a file and stores it in the FileStore */
public interface FileStoreDownload {
File downloadFile(String url, String folderName, String fileName);
}