mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 00:16:16 +00:00
Merge pull request #454 from rcordovano/public_api_extension
Public api extension
This commit is contained in:
commit
25a7dd955f
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ import javax.swing.filechooser.FileFilter;
|
|||||||
/**
|
/**
|
||||||
* FileFilter helper class. Matches files based on extension
|
* FileFilter helper class. Matches files based on extension
|
||||||
*/
|
*/
|
||||||
class GeneralFilter extends FileFilter{
|
public class GeneralFilter extends FileFilter{
|
||||||
|
|
||||||
|
|
||||||
// Extensions & Descriptions for commonly used filters
|
// Extensions & Descriptions for commonly used filters
|
||||||
|
@ -39,7 +39,7 @@ import org.sleuthkit.autopsy.coreutils.ModuleSettings;
|
|||||||
/**
|
/**
|
||||||
* ImageTypePanel for adding an image file such as .img, .E0x, .00x, etc.
|
* ImageTypePanel for adding an image file such as .img, .E0x, .00x, etc.
|
||||||
*/
|
*/
|
||||||
class ImageFilePanel extends JPanel implements DocumentListener {
|
public class ImageFilePanel extends JPanel implements DocumentListener {
|
||||||
|
|
||||||
private final String PROP_LASTIMAGE_PATH = "LBL_LastImage_PATH";
|
private final String PROP_LASTIMAGE_PATH = "LBL_LastImage_PATH";
|
||||||
|
|
||||||
|
@ -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