Autopsy  4.4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb Class Reference

Inherits org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.

Public Member Functions

void addArtifact (CorrelationAttribute eamArtifact) throws EamDbException
 
void addReferenceInstance (EamGlobalFileInstance eamGlobalFileInstance, CorrelationAttribute.Type correlationType) throws EamDbException
 
void bulkInsertArtifacts () throws EamDbException
 
void bulkInsertCases (List< CorrelationCase > cases) throws EamDbException
 
void bulkInsertReferenceTypeEntries (Set< EamGlobalFileInstance > globalInstances, CorrelationAttribute.Type contentType) throws EamDbException
 
List< CorrelationAttributeInstancegetArtifactInstancesByPath (CorrelationAttribute.Type aType, String filePath) throws EamDbException
 
List< CorrelationAttributeInstancegetArtifactInstancesByTypeValue (CorrelationAttribute.Type aType, String value) throws EamDbException
 
List< CorrelationAttributeInstancegetArtifactInstancesKnownBad (CorrelationAttribute.Type aType, String value) throws EamDbException
 
List< String > getBadTags ()
 
CorrelationCase getCaseByUUID (String caseUUID) throws EamDbException
 
List< CorrelationCasegetCases () throws EamDbException
 
CorrelationAttribute.Type getCorrelationTypeById (int typeId) throws EamDbException
 
Long getCountArtifactInstancesByCaseDataSource (String caseUUID, String dataSourceID) throws EamDbException
 
Long getCountArtifactInstancesByTypeValue (CorrelationAttribute.Type aType, String value) throws EamDbException
 
Long getCountArtifactInstancesKnownBad (CorrelationAttribute.Type aType, String value) throws EamDbException
 
Long getCountUniqueCaseDataSourceTuplesHavingTypeValue (CorrelationAttribute.Type aType, String value) throws EamDbException
 
Long getCountUniqueDataSources () throws EamDbException
 
CorrelationDataSource getDataSourceDetails (String dataSourceDeviceId) throws EamDbException
 
List< CorrelationDataSourcegetDataSources () throws EamDbException
 
String getDbInfo (String name) throws EamDbException
 
List< CorrelationAttribute.Type > getDefinedCorrelationTypes () throws EamDbException
 
List< CorrelationAttribute.Type > getEnabledCorrelationTypes () throws EamDbException
 
int getFrequencyPercentage (CorrelationAttribute corAttr) throws EamDbException
 
List< String > getListCasesHavingArtifactInstancesKnownBad (CorrelationAttribute.Type aType, String value) throws EamDbException
 
EamOrganization getOrganizationByID (int orgID) throws EamDbException
 
List< EamOrganizationgetOrganizations () throws EamDbException
 
List< EamGlobalFileInstancegetReferenceInstancesByTypeValue (CorrelationAttribute.Type aType, String aValue) throws EamDbException
 
EamGlobalSet getReferenceSetByID (int referenceSetID) throws EamDbException
 
List< CorrelationAttribute.Type > getSupportedCorrelationTypes () throws EamDbException
 
boolean isArtifactlKnownBadByReference (CorrelationAttribute.Type aType, String value) throws EamDbException
 
void newCase (CorrelationCase eamCase) throws EamDbException
 
CorrelationCase newCase (Case autopsyCase) throws EamDbException
 
int newCorrelationType (CorrelationAttribute.Type newType) throws EamDbException
 
void newDataSource (CorrelationDataSource eamDataSource) throws EamDbException
 
void newDbInfo (String name, String value) throws EamDbException
 
void newOrganization (EamOrganization eamOrg) throws EamDbException
 
int newReferencelSet (EamGlobalSet eamGlobalSet) throws EamDbException
 
void prepareBulkArtifact (CorrelationAttribute eamArtifact) throws EamDbException
 
void reset () throws EamDbException
 
void saveSettings ()
 
void setArtifactInstanceKnownStatus (CorrelationAttribute eamArtifact, TskData.FileKnown knownStatus) throws EamDbException
 
void setBadTags (List< String > badTags)
 
void shutdownConnections () throws EamDbException
 
void updateCase (CorrelationCase eamCase) throws EamDbException
 
void updateCorrelationType (CorrelationAttribute.Type aType) throws EamDbException
 
void updateDbInfo (String name, String value) throws EamDbException
 
void updateSettings ()
 

Static Public Member Functions

static synchronized PostgresEamDb getInstance () throws EamDbException
 
static boolean isEnabled ()
 

Static Public Attributes

static final int SCHEMA_VERSION = 1
 

Protected Member Functions

Connection connect () throws EamDbException
 
String getConflictClause ()
 

Protected Attributes

int bulkArtifactsThreshold
 
final List< CorrelationAttribute.Type > DEFAULT_CORRELATION_TYPES
 

Private Member Functions

 PostgresEamDb () throws EamDbException
 
void setupConnectionPool () throws EamDbException
 

Private Attributes

BasicDataSource connectionPool = null
 
final PostgresEamDbSettings dbSettings
 

Static Private Attributes

static final String CONFLICT_CLAUSE = "ON CONFLICT DO NOTHING"
 
static final int CONN_POOL_SIZE = 10
 
static PostgresEamDb instance
 
static final Logger LOGGER = Logger.getLogger(PostgresEamDb.class.getName())
 

Detailed Description

Central Repository database implementation using Postgres as a backend

Definition at line 33 of file PostgresEamDb.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.PostgresEamDb ( ) throws EamDbException
private

Member Function Documentation

void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.addArtifact ( CorrelationAttribute  eamArtifact) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.addReferenceInstance ( EamGlobalFileInstance  eamGlobalFileInstance,
CorrelationAttribute.Type  correlationType 
) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkInsertArtifacts ( ) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkInsertCases ( List< CorrelationCase cases) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkInsertReferenceTypeEntries ( Set< EamGlobalFileInstance globalInstances,
CorrelationAttribute.Type  contentType 
) throws EamDbException
inherited
Connection org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.connect ( ) throws EamDbException
protected

Lazily setup Singleton connection on first request.

Returns
A connection from the connection pool.
Exceptions
EamDbException

Definition at line 167 of file PostgresEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.isEnabled(), and org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.setupConnectionPool().

Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.reset().

List<CorrelationAttributeInstance> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getArtifactInstancesByPath ( CorrelationAttribute.Type  aType,
String  filePath 
) throws EamDbException
inherited
List<CorrelationAttributeInstance> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getArtifactInstancesByTypeValue ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited
List<CorrelationAttributeInstance> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getArtifactInstancesKnownBad ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited
List<String> org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.getBadTags ( )

Get the list of tags recognized as "Bad"

Returns
The list of bad tags

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 191 of file PostgresEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDbSettings.getBadTags().

CorrelationCase org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCaseByUUID ( String  caseUUID) throws EamDbException
inherited
List<CorrelationCase> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCases ( ) throws EamDbException
inherited
String org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.getConflictClause ( )
protected
CorrelationAttribute.Type org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCorrelationTypeById ( int  typeId) throws EamDbException
inherited
Long org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountArtifactInstancesByCaseDataSource ( String  caseUUID,
String  dataSourceID 
) throws EamDbException
inherited
Long org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountArtifactInstancesByTypeValue ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited

Retrieves number of artifact instances in the database that are associated with the ArtifactType and artifactValue of the given artifact.

Parameters
eamArtifactArtifact with artifactType and artifactValue to search for
Returns
Number of artifact instances having ArtifactType and ArtifactValue.

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 707 of file AbstractSqlEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closeConnection(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closePreparedStatement(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closeResultSet(), org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.connect(), and org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.correlationTypeToInstanceTableName().

Long org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountArtifactInstancesKnownBad ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited
Long org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountUniqueCaseDataSourceTuplesHavingTypeValue ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited
Long org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountUniqueDataSources ( ) throws EamDbException
inherited
CorrelationDataSource org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getDataSourceDetails ( String  dataSourceDeviceId) throws EamDbException
inherited
List<CorrelationDataSource> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getDataSources ( ) throws EamDbException
inherited
String org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getDbInfo ( String  name) throws EamDbException
inherited
List<CorrelationAttribute.Type> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getDefinedCorrelationTypes ( ) throws EamDbException
inherited
List<CorrelationAttribute.Type> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getEnabledCorrelationTypes ( ) throws EamDbException
inherited
int org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getFrequencyPercentage ( CorrelationAttribute  corAttr) throws EamDbException
inherited

Calculate the percentage of data sources that have this attribute value.

Parameters
corAttrAttribute type and value to get data about
Returns
Int between 0 and 100

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 739 of file AbstractSqlEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountUniqueCaseDataSourceTuplesHavingTypeValue(), and org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCountUniqueDataSources().

static synchronized PostgresEamDb org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.getInstance ( ) throws EamDbException
static

Get the singleton instance of PostgresEamDb

Returns
the singleton instance of PostgresEamDb
Exceptions
EamDbExceptionif one or more default correlation type(s) have an invalid db table name.

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 53 of file PostgresEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.instance, and org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.PostgresEamDb().

Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.getInstance().

List<String> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getListCasesHavingArtifactInstancesKnownBad ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited

Gets list of distinct case display names, where each case has 1+ Artifact Instance matching eamArtifact with knownStatus = "Bad".

Parameters
aTypeEamArtifact.Type to search for
valueValue to search for
Returns
List of cases containing this artifact with instances marked as bad
Exceptions
EamDbException

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 1234 of file AbstractSqlEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closeConnection(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closePreparedStatement(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closeResultSet(), org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.connect(), and org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.correlationTypeToInstanceTableName().

EamOrganization org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getOrganizationByID ( int  orgID) throws EamDbException
inherited
List<EamOrganization> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getOrganizations ( ) throws EamDbException
inherited
List<EamGlobalFileInstance> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getReferenceInstancesByTypeValue ( CorrelationAttribute.Type  aType,
String  aValue 
) throws EamDbException
inherited
EamGlobalSet org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getReferenceSetByID ( int  referenceSetID) throws EamDbException
inherited
List<CorrelationAttribute.Type> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getSupportedCorrelationTypes ( ) throws EamDbException
inherited
boolean org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.isArtifactlKnownBadByReference ( CorrelationAttribute.Type  aType,
String  value 
) throws EamDbException
inherited
static boolean org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.isEnabled ( )
staticinherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newCase ( CorrelationCase  eamCase) throws EamDbException
inherited
CorrelationCase org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newCase ( Case  autopsyCase) throws EamDbException
inherited
int org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newCorrelationType ( CorrelationAttribute.Type  newType) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newDataSource ( CorrelationDataSource  eamDataSource) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newDbInfo ( String  name,
String  value 
) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newOrganization ( EamOrganization  eamOrg) throws EamDbException
inherited
int org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newReferencelSet ( EamGlobalSet  eamGlobalSet) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.prepareBulkArtifact ( CorrelationAttribute  eamArtifact) throws EamDbException
inherited

Adds an eamArtifact to an internal list to be later added to DB. Artifact can have 1 or more Artifact Instances. Insert will be triggered by a threshold or a call to bulkInsertArtifacts().

Parameters
eamArtifactThe artifact to add

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 878 of file AbstractSqlEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkArtifacts, and org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkInsertArtifacts().

void org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.reset ( ) throws EamDbException
void org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.saveSettings ( )
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.setArtifactInstanceKnownStatus ( CorrelationAttribute  eamArtifact,
TskData.FileKnown  knownStatus 
) throws EamDbException
inherited

Sets an eamArtifact instance to the given knownStatus. If eamArtifact exists, it is updated. If eamArtifact does not exist it is added with the given status.

Parameters
eamArtifactArtifact containing exactly one (1) ArtifactInstance.
FileKnownThe status to change the artifact to

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 1048 of file AbstractSqlEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.addArtifact(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closeConnection(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closePreparedStatement(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.closeResultSet(), org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.connect(), org.sleuthkit.autopsy.centralrepository.datamodel.EamDbUtil.correlationTypeToInstanceTableName(), org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getCaseByUUID(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationCase.getCaseUUID(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getComment(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getCorrelationCase(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getCorrelationDataSource(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getCorrelationType(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getCorrelationValue(), org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.getDataSourceDetails(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationDataSource.getDeviceID(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttributeInstance.getFilePath(), org.sleuthkit.autopsy.centralrepository.datamodel.CorrelationAttribute.getInstances(), org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newCase(), and org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.newDataSource().

void org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.setBadTags ( List< String >  tags)

Set the tags recognized as "Bad"

Parameters
tagsThe tags to consider bad

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 196 of file PostgresEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDbSettings.setBadTags().

void org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.setupConnectionPool ( ) throws EamDbException
private
void org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.shutdownConnections ( ) throws EamDbException

Shutdown the connection pool.

This closes the connection pool including all idle database connections. It will not close active/in-use connections. Thus, it is vital that there are no in-use connections when you call this method.

Exceptions
EamDbExceptionif there is a problem closing the connection pool.

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 72 of file PostgresEamDb.java.

void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.updateCase ( CorrelationCase  eamCase) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.updateCorrelationType ( CorrelationAttribute.Type  aType) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.updateDbInfo ( String  name,
String  value 
) throws EamDbException
inherited
void org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.updateSettings ( )

Update settings

When using updateSettings, if any database settings have changed, you should call shutdownConnections() before using any API methods. That will ensure that any old connections are closed and all new connections will be made using the new settings.

Implements org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.

Definition at line 86 of file PostgresEamDb.java.

References org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkArtifactsThreshold, org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDbSettings.getBulkThreshold(), and org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDbSettings.loadSettings().

Member Data Documentation

int org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.bulkArtifactsThreshold
protectedinherited
final String org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.CONFLICT_CLAUSE = "ON CONFLICT DO NOTHING"
staticprivate
final int org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.CONN_POOL_SIZE = 10
staticprivate

Definition at line 41 of file PostgresEamDb.java.

BasicDataSource org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.connectionPool = null
private

Definition at line 42 of file PostgresEamDb.java.

final PostgresEamDbSettings org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.dbSettings
private

Definition at line 44 of file PostgresEamDb.java.

final List<CorrelationAttribute.Type> org.sleuthkit.autopsy.centralrepository.datamodel.AbstractSqlEamDb.DEFAULT_CORRELATION_TYPES
protectedinherited
PostgresEamDb org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.instance
staticprivate
final Logger org.sleuthkit.autopsy.centralrepository.datamodel.PostgresEamDb.LOGGER = Logger.getLogger(PostgresEamDb.class.getName())
staticprivate

Definition at line 35 of file PostgresEamDb.java.

final int org.sleuthkit.autopsy.centralrepository.datamodel.EamDb.SCHEMA_VERSION = 1
staticinherited

Definition at line 31 of file EamDb.java.


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

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