Uses of Class
org.owasp.dependencycheck.dependency.Confidence
-
Packages that use Confidence Package Description org.owasp.dependencycheck.analyzer Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.org.owasp.dependencycheck.dependency Contains the core Dependency implementation.org.owasp.dependencycheck.dependency.naming A collection of identifiers for Dependency objects.org.owasp.dependencycheck.xml.hints Contains classes used to parse the hints file to add evidence to dependencies. -
-
Uses of Confidence in org.owasp.dependencycheck.analyzer
Methods in org.owasp.dependencycheck.analyzer with parameters of type Confidence Modifier and Type Method Description protected booleanCPEAnalyzer. determineIdentifiers(Dependency dependency, java.lang.String vendor, java.lang.String product, Confidence currentConfidence)Retrieves a list of CPE values from the CveDB based on the vendor and product passed in. -
Uses of Confidence in org.owasp.dependencycheck.dependency
Methods in org.owasp.dependencycheck.dependency that return Confidence Modifier and Type Method Description ConfidenceEvidence. getConfidence()Get the value of confidence.static ConfidenceConfidence. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Confidence[]Confidence. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.owasp.dependencycheck.dependency with parameters of type Confidence Modifier and Type Method Description voidDependency. addAsEvidence(java.lang.String source, MavenArtifact mavenArtifact, Confidence confidence)Adds the Maven artifact as evidence.voidEvidence. setConfidence(Confidence confidence)Set the value of confidence.Constructors in org.owasp.dependencycheck.dependency with parameters of type Confidence Constructor Description Evidence(java.lang.String source, java.lang.String name, java.lang.String value, Confidence confidence)Creates a new Evidence objects.Evidence(java.lang.String source, java.lang.String name, java.lang.String value, Confidence confidence, boolean fromHint)Creates a new Evidence objects. -
Uses of Confidence in org.owasp.dependencycheck.dependency.naming
Methods in org.owasp.dependencycheck.dependency.naming that return Confidence Modifier and Type Method Description ConfidenceCpeIdentifier. getConfidence()ConfidenceGenericIdentifier. getConfidence()Get the value of confidence.ConfidenceIdentifier. getConfidence()Get the value of confidence.ConfidencePurlIdentifier. getConfidence()Methods in org.owasp.dependencycheck.dependency.naming with parameters of type Confidence Modifier and Type Method Description voidCpeIdentifier. setConfidence(Confidence confidence)Set the value of confidence.voidGenericIdentifier. setConfidence(Confidence confidence)Set the value of confidence.voidIdentifier. setConfidence(Confidence confidence)Set the value of confidence.voidPurlIdentifier. setConfidence(Confidence confidence)Set the value of confidence.Constructors in org.owasp.dependencycheck.dependency.naming with parameters of type Confidence Constructor Description CpeIdentifier(java.lang.String vendor, java.lang.String product, java.lang.String version, Confidence confidence)Constructs a new CPE Identifier from a CPE object with the given confidence.CpeIdentifier(us.springett.parsers.cpe.Cpe cpe, java.lang.String url, Confidence confidence)Constructs a new CPE Identifier from a CPE object with the given confidence.CpeIdentifier(us.springett.parsers.cpe.Cpe cpe, Confidence confidence)Constructs a new CPE Identifier from a CPE object with the given confidence.GenericIdentifier(java.lang.String value, java.lang.String url, Confidence confidence)Constructs a new Identifier with the specified data.GenericIdentifier(java.lang.String value, Confidence confidence)Constructs a new Identifier with the specified data.PurlIdentifier(com.github.packageurl.PackageURL purl, java.lang.String url, Confidence confidence)Constructs a new Package-URL identifier.PurlIdentifier(com.github.packageurl.PackageURL purl, Confidence confidence)Constructs a new Package-URL identifier.PurlIdentifier(java.lang.String type, java.lang.String namespace, java.lang.String name, java.lang.String version, Confidence confidence)Constructs a new Package-URL identifier.PurlIdentifier(java.lang.String type, java.lang.String name, java.lang.String version, Confidence confidence)Constructs a new Package-URL identifier. -
Uses of Confidence in org.owasp.dependencycheck.xml.hints
Methods in org.owasp.dependencycheck.xml.hints with parameters of type Confidence Modifier and Type Method Description voidHintRule. addAddProduct(java.lang.String source, java.lang.String name, java.lang.String value, Confidence confidence)Adds a given product to the list of evidence to add when matched.voidHintRule. addAddVendor(java.lang.String source, java.lang.String name, java.lang.String value, Confidence confidence)Adds a given vendor to the list of evidence to add when matched.voidHintRule. addAddVersion(java.lang.String source, java.lang.String name, java.lang.String value, Confidence confidence)Adds a given version to the list of evidence to add when matched.voidHintRule. addGivenProduct(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Adds a given product to the list of evidence to matched.voidHintRule. addGivenVendor(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Adds a given vendors to the list of evidence to matched.voidHintRule. addGivenVersion(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Adds a given version to the list of evidence to match.voidHintRule. addRemoveProduct(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Adds a given product to the list of evidence to remove when matched.voidHintRule. addRemoveVendor(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Adds a given vendor to the list of evidence to remove when matched.voidHintRule. addRemoveVersion(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Adds a given version to the list of evidence to remove when matched.Constructors in org.owasp.dependencycheck.xml.hints with parameters of type Confidence Constructor Description EvidenceMatcher(java.lang.String source, java.lang.String name, java.lang.String value, boolean regex, Confidence confidence)Creates a new EvidenceMatcher objects.
-