diff --git a/Core/src/org/sleuthkit/autopsy/ingest/DataArtifactIngestPipeline.java b/Core/src/org/sleuthkit/autopsy/ingest/DataArtifactIngestPipeline.java index bd256d05ed..2750a2c32f 100755 --- a/Core/src/org/sleuthkit/autopsy/ingest/DataArtifactIngestPipeline.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/DataArtifactIngestPipeline.java @@ -23,22 +23,23 @@ import java.util.Optional; import org.sleuthkit.datamodel.DataArtifact; /** - * A pipeline of data artifact ingest modules used to execute data artifact + * A pipeline of data artifact ingest modules used to perform data artifact * ingest tasks for an ingest job. */ final class DataArtifactIngestPipeline extends IngestPipeline { /** - * Constructs a pipeline of data artifact ingest modules used to execute + * Constructs a pipeline of data artifact ingest modules used to perform * data artifact ingest tasks for an ingest job. * - * @param ingestJobPipeline The ingest job pipeline that owns this ingest - * task pipeline. - * @param moduleTemplates The ingest module templates that define this - * pipeline. May be an empty list. + * @param ingestJobExecutor The ingest job executor that owns this pipeline. + * @param moduleTemplates The ingest module templates to be used to + * construct the ingest modules for this pipeline. + * May be an empty list if this type of pipeline is + * not needed for the ingest job. */ - DataArtifactIngestPipeline(IngestJobExecutor ingestJobPipeline, List moduleTemplates) { - super(ingestJobPipeline, moduleTemplates); + DataArtifactIngestPipeline(IngestJobExecutor ingestJobExecutor, List moduleTemplates) { + super(ingestJobExecutor, moduleTemplates); } @Override diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestPipeline.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestPipeline.java index c7bbf03608..f6d85366d7 100755 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestPipeline.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestPipeline.java @@ -355,10 +355,7 @@ abstract class IngestPipeline { /** * An abstract superclass for an ingest module decorator that adds ingest - * infrastructure operations to the process() method of an ingest module. - * Subclasses of IngestPipeline need to provide a concrete implementation of - * this class that provides the additional operations that the pipeline - * requires. + * infrastructure operations to an ingest module. */ static abstract class PipelineModule implements IngestModule { @@ -368,10 +365,10 @@ abstract class IngestPipeline { /** * Constructs an instance of an abstract superclass for an ingest module - * decorator that adds ingest infrastructure operations to the process() - * method of an ingest module. + * decorator that adds ingest infrastructure operations to an ingest + * module. * - * @param module The ingest module to be wrapped. + * @param module The ingest module to be decorated. * @param displayName The display name for the module. */ PipelineModule(IngestModule module, String displayName) {