Go to the documentation of this file.
19package org.sleuthkit.autopsy.ingest;
21import org.sleuthkit.datamodel.DataArtifact;
27final class DataArtifactIngestTask
extends IngestTask {
29 private final DataArtifact artifact;
39 DataArtifactIngestTask(IngestJobExecutor ingestJobExecutor, DataArtifact artifact) {
40 super(artifact.getName(), ingestJobExecutor);
41 this.artifact = artifact;
49 DataArtifact getDataArtifact() {
54 void execute(
long threadId) {
55 super.setThreadId(threadId);
56 getIngestJobExecutor().execute(
this);
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.