
org.molgenis.file.ingest.meta.FileIngestJobExecutionFactory 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.
The newest version!
package org.molgenis.file.ingest.meta;
import org.molgenis.data.AbstractSystemEntityFactory;
import org.molgenis.data.populate.EntityPopulator;
import org.springframework.stereotype.Component;
@Component
public class FileIngestJobExecutionFactory
extends AbstractSystemEntityFactory<
FileIngestJobExecution, FileIngestJobExecutionMetadata, String> {
FileIngestJobExecutionFactory(
FileIngestJobExecutionMetadata fileIngestJobExecutionMetadata,
EntityPopulator entityPopulator) {
super(FileIngestJobExecution.class, fileIngestJobExecutionMetadata, entityPopulator);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy