Add TskDataModelChangeEvent class

This commit is contained in:
Richard Cordovano 2021-02-18 11:17:18 -05:00
parent 39b3c6c825
commit 264e9de931

10
Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java Normal file → Executable file
View File

@ -1,7 +1,7 @@
/*
* Autopsy Forensic Browser
*
* Copyright 2014-2021 Basis Technology Corp.
* Copyright 2014 Basis Technology Corp.
* Contact: carrier <at> sleuthkit <dot> 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.
*/
}