Uses of Interface
org.owasp.dependencycheck.dependency.naming.Identifier
-
Packages that use Identifier Package Description org.owasp.dependencycheck.dependency Contains the core Dependency implementation.org.owasp.dependencycheck.dependency.naming A collection of identifiers for Dependency objects.org.owasp.dependencycheck.reporting Contains classes used to generate reports.org.owasp.dependencycheck.xml.suppression Contains classes used to suppress findings. -
-
Uses of Identifier in org.owasp.dependencycheck.dependency
Methods in org.owasp.dependencycheck.dependency that return types with arguments of type Identifier Modifier and Type Method Description java.util.Set<Identifier>Dependency. getSoftwareIdentifiers()Returns an unmodifiable set of software identifiers.java.util.Set<Identifier>Dependency. getSuppressedIdentifiers()Get the unmodifiable set of suppressedIdentifiers.java.util.Set<Identifier>Dependency. getVulnerableSoftwareIdentifiers()Returns an unmodifiable set of vulnerability identifiers.Methods in org.owasp.dependencycheck.dependency with parameters of type Identifier Modifier and Type Method Description voidDependency. addSoftwareIdentifier(Identifier identifier)Adds an entry to the list of detected Identifiers for the dependency file.voidDependency. addSuppressedIdentifier(Identifier identifier)Adds an identifier to the list of suppressed identifiers.voidDependency. addVulnerableSoftwareIdentifier(Identifier identifier)Adds an entry to the list of detected vulnerable software identifiers for the dependency file.voidDependency. removeVulnerableSoftwareIdentifier(Identifier i)Removes a vulnerable software identifier from the set of identifiers.Method parameters in org.owasp.dependencycheck.dependency with type arguments of type Identifier Modifier and Type Method Description protected voidDependency. addSoftwareIdentifiers(java.util.Set<Identifier> identifiers)Adds a set of Identifiers to the current list of software identifiers.protected voidDependency. addVulnerableSoftwareIdentifiers(java.util.Set<Identifier> identifiers)Adds a set of Identifiers to the current list of vulnerable software identifiers. -
Uses of Identifier in org.owasp.dependencycheck.dependency.naming
Classes in org.owasp.dependencycheck.dependency.naming that implement Identifier Modifier and Type Class Description classCpeIdentifierA CPE Identifier for a dependency object.classGenericIdentifierIn identifier such as a CPE or dependency coordinates (i.e.classPurlIdentifierThe Package-URL Identifier implementation.Methods in org.owasp.dependencycheck.dependency.naming with parameters of type Identifier Modifier and Type Method Description intCpeIdentifier. compareTo(@NotNull Identifier o)intGenericIdentifier. compareTo(@NotNull Identifier o)Implementation of the comparator interface.intPurlIdentifier. compareTo(@NotNull Identifier o) -
Uses of Identifier in org.owasp.dependencycheck.reporting
Methods in org.owasp.dependencycheck.reporting with parameters of type Identifier Modifier and Type Method Description java.lang.StringReportTool. identifierToSuppressionId(Identifier id)Converts an identifier into the Suppression string when possible.Method parameters in org.owasp.dependencycheck.reporting with type arguments of type Identifier Modifier and Type Method Description java.lang.StringEscapeTool. csvCpeConfidence(java.util.Set<Identifier> ids)Takes a set of Identifiers, filters them to just CPEs, and formats them for confidence display in a CSV.java.lang.StringEscapeTool. csvIdentifiers(java.util.Set<Identifier> ids)Takes a set of Identifiers, filters them to none CPE, and formats them for display in a CSV. -
Uses of Identifier in org.owasp.dependencycheck.xml.suppression
Methods in org.owasp.dependencycheck.xml.suppression with parameters of type Identifier Modifier and Type Method Description protected booleanSuppressionRule. identifierMatches(PropertyType suppressionEntry, Identifier identifier)Determines if the cpeEntry specified as a PropertyType matches the given Identifier.protected booleanSuppressionRule. purlMatches(PropertyType suppressionEntry, Identifier identifier)Determines if the cpeEntry specified as a PropertyType matches the given Identifier.
-