Fixing build errors

This commit is contained in:
Eugene Livis 2016-08-08 12:31:03 -04:00
parent 1457990e8a
commit 3c1f4e2222
5 changed files with 21 additions and 3628 deletions

View File

@ -1,2 +1,2 @@
javac.source=1.7 javac.source=1.8
javac.compilerargs=-Xlint -Xlint:-serial javac.compilerargs=-Xlint -Xlint:-serial

View File

@ -6,6 +6,22 @@
<code-name-base>org.sleuthkit.autopsy.experimental</code-name-base> <code-name-base>org.sleuthkit.autopsy.experimental</code-name-base>
<suite-component/> <suite-component/>
<module-dependencies> <module-dependencies>
<dependency>
<code-name-base>org.openide.util</code-name-base>
<build-prerequisite/>
<compile-dependency/>
<run-dependency>
<specification-version>9.5.1</specification-version>
</run-dependency>
</dependency>
<dependency>
<code-name-base>org.openide.util.ui</code-name-base>
<build-prerequisite/>
<compile-dependency/>
<run-dependency>
<specification-version>9.4.1</specification-version>
</run-dependency>
</dependency>
<dependency> <dependency>
<code-name-base>org.sleuthkit.autopsy.core</code-name-base> <code-name-base>org.sleuthkit.autopsy.core</code-name-base>
<build-prerequisite/> <build-prerequisite/>

View File

@ -232,7 +232,7 @@ class AutoIngestJob implements Comparable<AutoIngestJob> {
* ingest manager. * ingest manager.
* @param nodeName Name of the node that is processing the job * @param nodeName Name of the node that is processing the job
*/ */
AutoIngestJob(Path imageFolderPath, String caseName, Path caseFolderName, AutoIngestManager.JobIngestStatus ingestStatus, String nodeName) { AutoIngestJob(Path imageFolderPath, String caseName, Path caseFolderName, /* //ELTODO AutoIngestManager.*/JobIngestStatus ingestStatus, String nodeName) {
this.caseName = caseName; this.caseName = caseName;
this.imageFolderPath = imageFolderPath; this.imageFolderPath = imageFolderPath;
this.caseFolderName = caseFolderName; this.caseFolderName = caseFolderName;
@ -293,7 +293,8 @@ class AutoIngestJob implements Comparable<AutoIngestJob> {
return ingestStatus.getStatus(); return ingestStatus.getStatus();
} }
AutoIngestManager.JobIngestStatus getIngestStatus() { // ELTODO AutoIngestManager.JobIngestStatus getIngestStatus() {
JobIngestStatus getIngestStatus() {
return ingestStatus; return ingestStatus;
} }

View File

@ -5,7 +5,7 @@
* Copyright (c) 2013-2015 Basis Technology Corporation. * Copyright (c) 2013-2015 Basis Technology Corporation.
* Contact: brianc@basistech.com * Contact: brianc@basistech.com
*/ */
package viking.autoingest; package org.sleuthkit.autopsy.autoingest;
import java.awt.Component; import java.awt.Component;
import java.time.Duration; import java.time.Duration;