Package net.continuumsecurity.model

Examples of net.continuumsecurity.model.Issue


    public void removeFalsePositives(ExamplesTable falsePositivesTable) {
        for (Map<String,String> row : falsePositivesTable.getRows()) {
            Integer pluginId = Integer.parseInt(row.get("PluginID"));
            String hostname = row.get("Hostname");

            Issue issue = issues.get(pluginId);
            if (issue != null) {
                issue.getHosts().remove(hostname);
                if (issue.getHosts().size() == 0) {
                    issues.remove(pluginId);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of net.continuumsecurity.model.Issue

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.