From 462fcb5413be8a116a76abbd611ff1c7d2b4967a Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 2 Feb 2015 20:02:13 -0500 Subject: [PATCH] Add cancellation data to data source ingest job snapshots --- Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java index 36e2e78f56..1883c9569b 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java @@ -190,7 +190,7 @@ public final class IngestJob { * * @return A data source name string. */ - String getDataSource() { + public String getDataSource() { return snapshot.getDataSource(); } @@ -198,9 +198,9 @@ public final class IngestJob { * Indicates whether or not the processing of the data source that * is the subject of this snapshot was canceled. * - * @return + * @return True or false. */ - boolean isCancelled() { + public boolean isCancelled() { return snapshot.isCancelled(); } @@ -211,7 +211,7 @@ public final class IngestJob { * @return A list of canceled data source level ingest module * display names, possibly empty. */ - List getCancelledDataSourceIngestModules() { + public List getCancelledDataSourceIngestModules() { return snapshot.getCancelledDataSourceIngestModules(); }