Uses of Class
org.owasp.dependencycheck.xml.pom.Model
Packages that use Model
Package
Description
Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.
Implements a generic persisted cache that can be used to store results of external analysis between executions.
This package contains classes used to parse pom.xml files.
-
Uses of Model in org.owasp.dependencycheck.analyzer
Methods in org.owasp.dependencycheck.analyzer with parameters of type ModelModifier and TypeMethodDescriptionstatic voidJarAnalyzer.extractLicense(Model pom, Dependency dependency) Extracts the license information from the pom and adds it to the dependency.static booleanJarAnalyzer.setPomEvidence(Dependency dependency, Model pom, List<JarAnalyzer.ClassNameInformation> classes, boolean isMainPom) Sets evidence from the pom on the supplied dependency. -
Uses of Model in org.owasp.dependencycheck.data.cache
Methods in org.owasp.dependencycheck.data.cache that return types with arguments of type ModelModifier and TypeMethodDescriptionDataCacheFactory.getPomCache()Returns the data cache for POM files. -
Uses of Model in org.owasp.dependencycheck.xml.pom
Methods in org.owasp.dependencycheck.xml.pom that return ModelModifier and TypeMethodDescriptionPomHandler.getModel()Returns the model obtained from the pom.xml.Parses the given xml file and returns a Model object containing only the fields dependency-check requires.PomParser.parse(InputStream inputStream) Parses the given XML file and returns a Model object containing only the fields dependency-check requires.PomParser.parseWithoutDocTypeCleanup(File file) Parses the given xml file and returns a Model object containing only the fields dependency-check requires.PomParser.parseWithoutDocTypeCleanup(InputStream inputStream) Parses the given XML file and returns a Model object containing only the fields dependency-check requires.static ModelReads in the specified POM and converts it to a Model.static ModelRetrieves the specified POM from a jar file and converts it to a Model.