Package org.sleuthkit.autopsy.externalresults

Examples of org.sleuthkit.autopsy.externalresults.ExternalResults$Artifact


    return intoDiagram || intoLane || intoParticipant;
  }

  @Override
  public Object[] create(ICreateContext context) {
    Artifact artifact = null;
    try {
      ModelHandler handler = ModelHandler.getInstance(getDiagram());
      artifact = createArtifact(context);
      handler.addArtifact(FeatureSupport.getTargetParticipant(context, handler), artifact);
    } catch (IOException e) {
View Full Code Here


                }
                progressBar.progress(1);

                // Import the results of the analysis.
                ExternalResultsXMLParser resultsParser = new ExternalResultsXMLParser(dataSource, resultsFilePath);
                ExternalResults results = resultsParser.parse();
                List<ErrorInfo> errors = resultsParser.getErrorInfo();
                ExternalResultsImporter importer = new ExternalResultsImporter();
                errors.addAll(importer.importResults(results));
                for (ErrorInfo errorInfo : errors) {
                    IngestServices.getInstance().postMessage(IngestMessage.createErrorMessage(moduleName, "External Results Import Error", errorInfo.getMessage()));
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.externalresults.ExternalResults$Artifact

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.