Restored public access to hash db manager and case action exception

This commit is contained in:
Richard Cordovano 2014-01-27 10:56:16 -05:00
parent 3b04a2ef4f
commit e38c22d652
2 changed files with 4 additions and 5 deletions

View File

@ -19,9 +19,10 @@
package org.sleuthkit.autopsy.casemodule; package org.sleuthkit.autopsy.casemodule;
/** /**
* Exception thrown when case action (such as open, close, create) resulted in an error * Exception thrown when case action (such as open, close, create) resulted in
* an error
*/ */
class CaseActionException extends Exception { public class CaseActionException extends Exception {
public CaseActionException(String message) { public CaseActionException(String message) {
super(message); super(message);
@ -30,6 +31,4 @@ package org.sleuthkit.autopsy.casemodule;
public CaseActionException(String message, Throwable cause) { public CaseActionException(String message, Throwable cause) {
super(message, cause); super(message, cause);
} }
} }

View File

@ -56,7 +56,7 @@ import org.sleuthkit.datamodel.TskCoreException;
* This class implements a singleton that manages the set of hash databases * This class implements a singleton that manages the set of hash databases
* used to classify files as unknown, known or known bad. * used to classify files as unknown, known or known bad.
*/ */
class HashDbManager implements PropertyChangeListener { public class HashDbManager implements PropertyChangeListener {
private static final String ROOT_ELEMENT = "hash_sets"; private static final String ROOT_ELEMENT = "hash_sets";
private static final String SET_ELEMENT = "hash_set"; private static final String SET_ELEMENT = "hash_set";