Autopsy  4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent Class Reference

Inherits org.sleuthkit.autopsy.events.AutopsyEvent, and Serializable.

Public Member Functions

 ReportAddedEvent (Report report)
 
Object getNewValue ()
 
Object getSource ()
 
SourceType getSourceType ()
 

Private Attributes

transient Report report
 

Static Private Attributes

static final Logger logger = Logger.getLogger(DataSourceAddedEvent.class.getName())
 
static final long serialVersionUID = 1L
 

Detailed Description

Event published when a report is added to a case.

Definition at line 33 of file ReportAddedEvent.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.ReportAddedEvent ( Report  report)

Constructs an event published when a report is added to a case.

Parameters
reportThe data source that was added.

Putting the object id of the report into newValue to allow for lazy loading of the Report object.

Definition at line 44 of file ReportAddedEvent.java.

References org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.report, and org.sleuthkit.autopsy.casemodule.Case.Events.REPORT_ADDED.

Member Function Documentation

Object org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.getNewValue ( )

Gets the data source that was added.

Returns
The data source.

The report field is set in the constructor, but it is transient so it will become null when the event is serialized for publication over a network. Doing a lazy load of the Report object may save database round trips from other nodes since subscribers to this event are often not interested in the event data.

Definition at line 59 of file ReportAddedEvent.java.

References org.sleuthkit.autopsy.casemodule.Case.getCurrentCase(), org.sleuthkit.autopsy.casemodule.Case.getSleuthkitCase(), and org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.report.

Object org.sleuthkit.autopsy.events.AutopsyEvent.getSource ( )
inherited

Gets the source type (local or remote) as a string. This is for clients that do not have access to the AutopsyEvent type, and is necessary because the events package is not currently a public package within the Autopsy-Core NetBeans Module (NBM).

Returns
A string, either "LOCAL" or "REMOTE", as an Object.

Definition at line 82 of file AutopsyEvent.java.

SourceType org.sleuthkit.autopsy.events.AutopsyEvent.getSourceType ( )
inherited

Gets the source type (local or remote).

Returns
SourceType The source type of the event, local or remote.

Definition at line 69 of file AutopsyEvent.java.

References org.sleuthkit.autopsy.events.AutopsyEvent.sourceType.

Member Data Documentation

final Logger org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.logger = Logger.getLogger(DataSourceAddedEvent.class.getName())
staticprivate

Definition at line 36 of file ReportAddedEvent.java.

transient Report org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.report
private
final long org.sleuthkit.autopsy.casemodule.events.ReportAddedEvent.serialVersionUID = 1L
staticprivate

Definition at line 35 of file ReportAddedEvent.java.


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

Copyright © 2012-2016 Basis Technology. Generated on: Mon Jan 2 2017
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.