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

View File

@ -6,6 +6,22 @@
<code-name-base>org.sleuthkit.autopsy.experimental</code-name-base>
<suite-component/>
<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>
<code-name-base>org.sleuthkit.autopsy.core</code-name-base>
<build-prerequisite/>

View File

@ -232,7 +232,7 @@ class AutoIngestJob implements Comparable<AutoIngestJob> {
* ingest manager.
* @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.imageFolderPath = imageFolderPath;
this.caseFolderName = caseFolderName;
@ -293,7 +293,8 @@ class AutoIngestJob implements Comparable<AutoIngestJob> {
return ingestStatus.getStatus();
}
AutoIngestManager.JobIngestStatus getIngestStatus() {
// ELTODO AutoIngestManager.JobIngestStatus getIngestStatus() {
JobIngestStatus getIngestStatus() {
return ingestStatus;
}

View File

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