io.codemodder.providers.defectdojo.RuleFindings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-defectdojo Show documentation
Show all versions of codemodder-plugin-defectdojo Show documentation
Plugin to enable the use of DefectDojo in codemods
package io.codemodder.providers.defectdojo;
import java.nio.file.Path;
import java.util.List;
/** Represents the findings of a given rule. */
public interface RuleFindings {
/** Returns the findings for the given path. */
List getForPath(Path path);
/** Returns true if there are no findings. */
boolean isEmpty();
}