Autopsy  4.6.0
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.DataSourceAddedEvent Class Reference

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

Public Member Functions

 DataSourceAddedEvent (Content dataSource, UUID dataSourceId)
 
UUID getAddingDataSourceEventId ()
 
Content getDataSource ()
 
UUID getDataSourceId ()
 
Object getNewValue ()
 
Object getSource ()
 
SourceType getSourceType ()
 

Private Attributes

transient Content dataSource
 
final UUID dataSourceId
 

Static Private Attributes

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

Detailed Description

Event published when a data source is added to a case.

Definition at line 34 of file DataSourceAddedEvent.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.DataSourceAddedEvent ( Content  dataSource,
UUID  dataSourceId 
)

Constructs an event published when a data source is added to a case.

Parameters
dataSourceThe data source that was added.
dataSourceIdA unique identifier associated with the data source. Used to pair this DataSourceAddedEvent with a AddindDataSourceEvent.

Putting the object id of the data source into newValue to allow for lazy loading of the Content object. This bypasses the issues related to the serialization and de-serialization of Content objects when the event is published over a network.

Definition at line 49 of file DataSourceAddedEvent.java.

References org.sleuthkit.autopsy.casemodule.Case.Events.DATA_SOURCE_ADDED, org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSource, and org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSourceId.

Member Function Documentation

UUID org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.getAddingDataSourceEventId ( )

Gets the unique id used to pair this DataSourceAddedEvent with the corresponding AddingDataSourceEvent.

Returns
The unique event id.

Definition at line 105 of file DataSourceAddedEvent.java.

References org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSourceId.

Content org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.getDataSource ( )
UUID org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.getDataSourceId ( )

Gets the unique id used to pair this DataSourceAddedEvent with the corresponding AddingDataSourceEvent.

Returns
The unique event id.
Deprecated:
Use getAddingDataSourceEventId instead.

Definition at line 118 of file DataSourceAddedEvent.java.

References org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSourceId.

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

Gets the data source that was added.

Returns
The data source or null if there is an error retrieving the data source.

The dataSource 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 Content object bypasses the issues related to the serialization and de-serialization of Content objects and may also save database round trips from other nodes since subscribers to this event are often not interested in the event data.

Definition at line 68 of file DataSourceAddedEvent.java.

References org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSource, org.sleuthkit.autopsy.casemodule.Case.getOpenCase(), and org.sleuthkit.autopsy.casemodule.Case.getSleuthkitCase().

Referenced by org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.getDataSource().

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

transient Content org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSource
private
final UUID org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.dataSourceId
private
final Logger org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.logger = Logger.getLogger(DataSourceAddedEvent.class.getName())
staticprivate

Definition at line 37 of file DataSourceAddedEvent.java.

final long org.sleuthkit.autopsy.casemodule.events.DataSourceAddedEvent.serialVersionUID = 1L
staticprivate

Definition at line 36 of file DataSourceAddedEvent.java.


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

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