Autopsy  4.19.3
Graphical digital forensics platform for The Sleuth Kit and other tools.
Protected Member Functions | Private Attributes | List of all members
org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory Class Reference

Inherits org.sleuthkit.autopsy.datamodel.accounts.Accounts.ObservingChildren< FileWithCCN >.

Protected Member Functions

void addNotify ()
 
abstract boolean createKeys (List< X > list)
 
boolean createKeys (List< FileWithCCN > list)
 
Node[] createNodesForKey (FileWithCCN key)
 
void finalize () throws Throwable
 

Private Attributes

final PropertyChangeListener pcl
 
final PropertyChangeListener weakPcl = WeakListeners.propertyChange(pcl, null)
 

Detailed Description

Definition at line 827 of file Accounts.java.

Member Function Documentation

void org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory.addNotify ( )
protected
abstract boolean org.sleuthkit.autopsy.datamodel.accounts.Accounts.ObservingChildren< X >.createKeys ( List< X >  list)
abstractprotectedinherited

Create of keys used by this Children object to represent the child nodes.

boolean org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory.createKeys ( List< FileWithCCN list)
protected
Node [] org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory.createNodesForKey ( FileWithCCN  key)
protected
void org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory.finalize ( ) throws Throwable
protected

Member Data Documentation

final PropertyChangeListener org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory.pcl
private
Initial value:
= new PropertyChangeListener() {
@Override
public void propertyChange(PropertyChangeEvent evt) {
String eventType = evt.getPropertyName();
if (eventType.equals(IngestManager.IngestModuleEvent.DATA_ADDED.toString())) {
try {
Case.getCurrentCaseThrows();
ModuleDataEvent eventData = (ModuleDataEvent) evt.getOldValue();
if (null != eventData
&& eventData.getBlackboardArtifactType().getTypeID() == Type.TSK_ACCOUNT.getTypeID()) {
reviewStatusBus.post(eventData);
}
} catch (NoCurrentCaseException notUsed) {
}
} else if (eventType.equals(IngestManager.IngestJobEvent.COMPLETED.toString())
|| eventType.equals(IngestManager.IngestJobEvent.CANCELLED.toString())) {
try {
Case.getCurrentCaseThrows();
refresh(true);
} catch (NoCurrentCaseException notUsed) {
}
}
}
}

Definition at line 829 of file Accounts.java.

final PropertyChangeListener org.sleuthkit.autopsy.datamodel.accounts.Accounts.FileWithCCNFactory.weakPcl = WeakListeners.propertyChange(pcl, null)
private

Definition at line 875 of file Accounts.java.


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

Copyright © 2012-2022 Basis Technology. Generated on: Tue Jun 27 2023
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.