Package org.sleuthkit.datamodel.TskData

Examples of org.sleuthkit.datamodel.TskData.FileKnown


   * @throws TskCoreException thrown if a critical error occurred within tsk
   * core
   */
  public boolean setKnown(AbstractFile file, FileKnown fileKnown) throws TskCoreException {
    long id = file.getId();
    FileKnown currentKnown = file.getKnown();
    if (currentKnown.compareTo(fileKnown) > 0) {
      return false;
    }
    CaseDbConnection connection = connections.getConnection();
    acquireExclusiveLock();
    Statement statement = null;
View Full Code Here

TOP

Related Classes of org.sleuthkit.datamodel.TskData.FileKnown

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.