mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
Restored public access to hash db manager and case action exception
This commit is contained in:
parent
3b04a2ef4f
commit
e38c22d652
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -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";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user