mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06:15 +00:00
Format CommandLineManager,java
This commit is contained in:
parent
9febb916c7
commit
6f16f03f99
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Autopsy Forensic Browser
|
* Autopsy Forensic Browser
|
||||||
*
|
*
|
||||||
* Copyright 2019-2020 Basis Technology Corp.
|
* Copyright 2019-2021 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");
|
||||||
@ -62,7 +62,6 @@ import org.sleuthkit.autopsy.ingest.IngestModuleError;
|
|||||||
import org.sleuthkit.autopsy.ingest.IngestProfiles;
|
import org.sleuthkit.autopsy.ingest.IngestProfiles;
|
||||||
import org.sleuthkit.autopsy.modules.interestingitems.FilesSet;
|
import org.sleuthkit.autopsy.modules.interestingitems.FilesSet;
|
||||||
import org.sleuthkit.autopsy.modules.interestingitems.FilesSetsManager;
|
import org.sleuthkit.autopsy.modules.interestingitems.FilesSetsManager;
|
||||||
import org.sleuthkit.autopsy.progress.LoggingProgressIndicator;
|
|
||||||
import org.sleuthkit.autopsy.report.infrastructure.ReportGenerator;
|
import org.sleuthkit.autopsy.report.infrastructure.ReportGenerator;
|
||||||
import org.sleuthkit.autopsy.report.infrastructure.ReportProgressIndicator;
|
import org.sleuthkit.autopsy.report.infrastructure.ReportProgressIndicator;
|
||||||
import org.sleuthkit.datamodel.Content;
|
import org.sleuthkit.datamodel.Content;
|
||||||
@ -73,7 +72,7 @@ import org.sleuthkit.datamodel.TskCoreException;
|
|||||||
* cause Autopsy to create a case, add a specified data source, run ingest on
|
* cause Autopsy to create a case, add a specified data source, run ingest on
|
||||||
* that data source, list all data sources in the case, and generate reports.
|
* that data source, list all data sources in the case, and generate reports.
|
||||||
*/
|
*/
|
||||||
public class CommandLineIngestManager extends CommandLineManager{
|
public class CommandLineIngestManager extends CommandLineManager {
|
||||||
|
|
||||||
private static final Logger LOGGER = Logger.getLogger(CommandLineIngestManager.class.getName());
|
private static final Logger LOGGER = Logger.getLogger(CommandLineIngestManager.class.getName());
|
||||||
private static final Set<IngestManager.IngestJobEvent> INGEST_JOB_EVENTS_OF_INTEREST = EnumSet.of(IngestManager.IngestJobEvent.CANCELLED, IngestManager.IngestJobEvent.COMPLETED);
|
private static final Set<IngestManager.IngestJobEvent> INGEST_JOB_EVENTS_OF_INTEREST = EnumSet.of(IngestManager.IngestJobEvent.CANCELLED, IngestManager.IngestJobEvent.COMPLETED);
|
||||||
@ -383,8 +382,11 @@ public class CommandLineIngestManager extends CommandLineManager{
|
|||||||
* @throws AutoIngestDataSourceProcessorException if there was a DSP
|
* @throws AutoIngestDataSourceProcessorException if there was a DSP
|
||||||
* processing error.
|
* processing error.
|
||||||
*
|
*
|
||||||
* @throws InterruptedException running the job processing task while
|
* @throws InterruptedException running the job
|
||||||
* blocking, i.e., if auto ingest is shutting down.
|
* processing task while
|
||||||
|
* blocking, i.e., if
|
||||||
|
* auto ingest is
|
||||||
|
* shutting down.
|
||||||
*/
|
*/
|
||||||
private void runDataSourceProcessor(Case caseForJob, AutoIngestDataSource dataSource) throws InterruptedException, AutoIngestDataSourceProcessor.AutoIngestDataSourceProcessorException {
|
private void runDataSourceProcessor(Case caseForJob, AutoIngestDataSource dataSource) throws InterruptedException, AutoIngestDataSourceProcessor.AutoIngestDataSourceProcessorException {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user