Package org.sleuthkit.autopsy.externalresults

Examples of org.sleuthkit.autopsy.externalresults.ExternalResultsImporter


                // 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()));
                }
                progressBar.progress(2);
            } catch (ParserConfigurationException | TransformerException | IOException ex) {
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.externalresults.ExternalResultsImporter

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.