Autopsy  4.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Attributes | List of all members
org.sleuthkit.autopsy.casemodule.Case.Events Enum Reference

Public Attributes

 ADDING_DATA_SOURCE
 
 ADDING_DATA_SOURCE_FAILED
 
 BLACKBOARD_ARTIFACT_TAG_ADDED
 
 BLACKBOARD_ARTIFACT_TAG_DELETED
 
 CONTENT_TAG_ADDED
 
 CURRENT_CASE
 
 DATA_SOURCE_ADDED
 
 DATA_SOURCE_DELETED
 
 EXAMINER
 
 NAME
 
 NUMBER
 
 REPORT_ADDED
 
 REPORT_DELETED
 

Detailed Description

Events that the case module will fire. Event listeners can get the event name by using String returned by toString() method on a specific event.

Definition at line 118 of file Case.java.

Member Data Documentation

org.sleuthkit.autopsy.casemodule.Case.Events.ADDING_DATA_SOURCE

Property name used for a property change event that indicates a new data source (image, local/logical file or local disk) is being added to the current case. The old and new values of the PropertyChangeEvent are null - cast the PropertyChangeEvent to org.sleuthkit.autopsy.casemodule.events.AddingDataSourceEvent to access event data.

Definition at line 147 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.AddingDataSourceEvent.AddingDataSourceEvent(), and org.sleuthkit.autopsy.casemodule.CollaborationMonitor.LocalTasksManager.propertyChange().

org.sleuthkit.autopsy.casemodule.Case.Events.ADDING_DATA_SOURCE_FAILED

Property name used for a property change event that indicates a failure adding a new data source (image, local/logical file or local disk) to the current case. The old and new values of the PropertyChangeEvent are null - cast the PropertyChangeEvent to org.sleuthkit.autopsy.casemodule.events.AddingDataSourceFailedEvent to access event data.

Definition at line 156 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.AddingDataSourceFailedEvent.AddingDataSourceFailedEvent(), and org.sleuthkit.autopsy.casemodule.CollaborationMonitor.LocalTasksManager.propertyChange().

org.sleuthkit.autopsy.casemodule.Case.Events.BLACKBOARD_ARTIFACT_TAG_ADDED

Property name for the event when a new BlackBoardArtifactTag is added. The new value is tag added, the old value is empty

Definition at line 195 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.BlackBoardArtifactTagAddedEvent.BlackBoardArtifactTagAddedEvent().

org.sleuthkit.autopsy.casemodule.Case.Events.BLACKBOARD_ARTIFACT_TAG_DELETED

Property name for the event when a new BlackBoardArtifactTag is deleted. The new value is empty, the old value is a BlackBoardArtifactTagDeletedEvent.DeletedBlackboardArtifactTagInfo object with info about the deleted tag.

Definition at line 202 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.BlackBoardArtifactTagDeletedEvent.BlackBoardArtifactTagDeletedEvent().

org.sleuthkit.autopsy.casemodule.Case.Events.CONTENT_TAG_ADDED

Property name for the event when a new ContentTag is added. The new value is tag added, the old value is empty

Definition at line 207 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.ContentTagAddedEvent.ContentTagAddedEvent().

org.sleuthkit.autopsy.casemodule.Case.Events.CURRENT_CASE

Property name that indicates the currently open case has changed. When a case is opened, the "new value" will be an instance of the opened Case object and the "old value" will be null. When a case is closed, the "new value" will be null and the "old value" will be the instance of the Case object being closed.

Definition at line 178 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.Case.changeCase(), org.sleuthkit.autopsy.keywordsearch.DropdownToolbar.KeywordPropertyChangeListener.propertyChange(), org.sleuthkit.autopsy.directorytree.DirectoryTreeTopComponent.propertyChange(), org.sleuthkit.autopsy.report.ReportWizardAction.ReportWizardAction(), org.sleuthkit.autopsy.ingest.IngestManager.subscribeToCaseEvents(), and org.sleuthkit.autopsy.directorytree.DirectoryTreeTopComponent.subscribeToChangeEvents().

org.sleuthkit.autopsy.casemodule.Case.Events.DATA_SOURCE_ADDED

Property name that indicates a new data source (image, disk or local file) has been added to the current case. The new value is the newly-added instance of the new data source, and the old value is always null.

Definition at line 163 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.DataSourceAddedEvent(), org.sleuthkit.autopsy.casemodule.CollaborationMonitor.LocalTasksManager.propertyChange(), org.sleuthkit.autopsy.directorytree.DirectoryTreeTopComponent.propertyChange(), and org.sleuthkit.autopsy.directorytree.DirectoryTreeTopComponent.subscribeToChangeEvents().

org.sleuthkit.autopsy.casemodule.Case.Events.DATA_SOURCE_DELETED

Property name that indicates a data source has been removed from the current case. The "old value" is the (int) content ID of the data source that was removed, the new value is the instance of the data source.

Definition at line 170 of file Case.java.

org.sleuthkit.autopsy.casemodule.Case.Events.EXAMINER

Property name that indicates the examiner of the current case has changed. Fired with the case examiner is changed. The value is a String: the name of the examiner. The empty string ("") is used for no examiner set.

Definition at line 138 of file Case.java.

org.sleuthkit.autopsy.casemodule.Case.Events.NAME

Property name that indicates the name of the current case has changed. The old value is the old case name, the new value is the new case name.

Definition at line 125 of file Case.java.

org.sleuthkit.autopsy.casemodule.Case.Events.NUMBER

Property name that indicates the number of the current case has changed. Fired with the case number is changed. The value is an int: the number of the case. -1 is used for no case number set.

Definition at line 131 of file Case.java.

org.sleuthkit.autopsy.casemodule.Case.Events.REPORT_ADDED

Name for property change events fired when a report is added to the case. The old value supplied by the event object is null and the new value is a reference to a Report object representing the new report.

Definition at line 184 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.ReportAddedEvent().

org.sleuthkit.autopsy.casemodule.Case.Events.REPORT_DELETED

Name for the property change event when a report is deleted from the case. Both the old value and the new value supplied by the event object are null.

Definition at line 190 of file Case.java.

Referenced by org.sleuthkit.autopsy.casemodule.Case.deleteReports().


The documentation for this enum was generated from the following file:

Copyright © 2012-2015 Basis Technology. Generated on: Wed Apr 6 2016
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.