mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Add TskDataModelChangeEvent class
This commit is contained in:
parent
39b3c6c825
commit
264e9de931
10
Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java
Normal file → Executable file
10
Core/src/org/sleuthkit/autopsy/ingest/IngestModule.java
Normal file → Executable file
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Autopsy Forensic Browser
|
* Autopsy Forensic Browser
|
||||||
*
|
*
|
||||||
* Copyright 2014-2021 Basis Technology Corp.
|
* Copyright 2014 Basis Technology Corp.
|
||||||
* Contact: carrier <at> sleuthkit <dot> org
|
* Contact: carrier <at> sleuthkit <dot> org
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
@ -47,8 +47,7 @@ package org.sleuthkit.autopsy.ingest;
|
|||||||
public interface IngestModule {
|
public interface IngestModule {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A return code for derived class process() methods that return a result
|
* A return code for derived class process() methods.
|
||||||
* code instead of throwing exceptions.
|
|
||||||
*/
|
*/
|
||||||
public enum ProcessResult {
|
public enum ProcessResult {
|
||||||
|
|
||||||
@ -91,4 +90,9 @@ public interface IngestModule {
|
|||||||
*/
|
*/
|
||||||
void startUp(IngestJobContext context) throws IngestModuleException;
|
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.
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user