From 264e9de931fc362daed102d0dc353b1bcdbf2dde Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Thu, 18 Feb 2021 11:17:18 -0500 Subject: [PATCH] Add TskDataModelChangeEvent class --- .../src/org/sleuthkit/autopsy/ingest/IngestModule.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) mode change 100644 => 100755 Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java old mode 100644 new mode 100755 index 47f22f99b8..c5628d1912 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java @@ -1,7 +1,7 @@ /* * Autopsy Forensic Browser * - * Copyright 2014-2021 Basis Technology Corp. + * Copyright 2014 Basis Technology Corp. * Contact: carrier sleuthkit org * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -47,8 +47,7 @@ package org.sleuthkit.autopsy.ingest; public interface IngestModule { /** - * A return code for derived class process() methods that return a result - * code instead of throwing exceptions. + * A return code for derived class process() methods. */ public enum ProcessResult { @@ -91,4 +90,9 @@ public interface IngestModule { */ void startUp(IngestJobContext context) throws IngestModuleException; + /** + * TODO: The next time an API change is legal, add a cancel() method and + * remove the "ingest job is canceled" queries from the IngestJobContext + * class. + */ }