[sleuthkit-developers] Corrections to developer's guide to Autopsy ingest modules
Brought to you by:
carrier
From: Richard C. <rco...@ba...> - 2014-07-24 15:22:51
|
The documentation available at http://www.sleuthkit.org/autopsy/docs/api-docs/3.1/mod_ingest_page.html is a bit out of synch with the recent Autopsy 3.1.0 Beta release. Please note the following: - Step 2 for creating a data source or file ingest module states that your module can optionally extend org.sleuthkit.autopsy.ingest.IngestModuleAdapter. The adapter class was removed before the beta release, so you should simply have your module implement org.sleuthkit.autopsy.ingest.DataSourceIngestModule or org.sleuthkit.autopsy.ingest.FileIngestModule, both of which extend the org.sleuthkit.autopsy.ingest.IngestModule interface. - The section on "Controlling the Ordering of Ingest Modules in Ingest Pipelines" should be ignored. User configuration of ingest module ordering has been deferred to a later release. |