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 boolean
CPEAnalyzer. 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 Confidence
Evidence. getConfidence()
Get the value of confidence.static Confidence
Confidence. 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 void
Dependency. addAsEvidence(java.lang.String source, MavenArtifact mavenArtifact, Confidence confidence)
Adds the Maven artifact as evidence.void
Evidence. 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 Confidence
CpeIdentifier. getConfidence()
Confidence
GenericIdentifier. getConfidence()
Get the value of confidence.Confidence
Identifier. getConfidence()
Get the value of confidence.Confidence
PurlIdentifier. getConfidence()
Methods in org.owasp.dependencycheck.dependency.naming with parameters of type Confidence Modifier and Type Method Description void
CpeIdentifier. setConfidence(Confidence confidence)
Set the value of confidence.void
GenericIdentifier. setConfidence(Confidence confidence)
Set the value of confidence.void
Identifier. setConfidence(Confidence confidence)
Set the value of confidence.void
PurlIdentifier. 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 void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.void
HintRule. 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.
-