Package org.sleuthkit.datamodel.BlackboardArtifact

Examples of org.sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE


   */
  private List<BlackboardArtifact> getArtifactsHelper(ResultSet rs) throws SQLException {
    ArrayList<BlackboardArtifact> artifacts = new ArrayList<BlackboardArtifact>();
    while (rs.next()) {
      final int artifactTypeID = rs.getInt(3);
      final ARTIFACT_TYPE artType = ARTIFACT_TYPE.fromID(artifactTypeID);
      artifacts.add(new BlackboardArtifact(this, rs.getLong(1), rs.getLong(2),
          artifactTypeID, artType.getLabel(), artType.getDisplayName()));
    }
    return artifacts;
  }
View Full Code Here

TOP

Related Classes of org.sleuthkit.datamodel.BlackboardArtifact.ARTIFACT_TYPE

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.