Uses of Class
org.owasp.dependencycheck.xml.pom.Model
-
Packages that use Model Package Description org.owasp.dependencycheck.analyzer Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.org.owasp.dependencycheck.data.cache Implements a generic persisted cache that can be used to store results of external analysis between executions.org.owasp.dependencycheck.xml.pom 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 Model Modifier and Type Method Description static 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, java.util.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 Model Modifier and Type Method Description DataCache<Model>DataCacheFactory. 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 Model Modifier and Type Method Description ModelPomHandler. getModel()Returns the model obtained from the pom.xml.ModelPomParser. parse(java.io.File file)Parses the given xml file and returns a Model object containing only the fields dependency-check requires.ModelPomParser. parse(java.io.InputStream inputStream)Parses the given XML file and returns a Model object containing only the fields dependency-check requires.ModelPomParser. parseWithoutDocTypeCleanup(java.io.File file)Parses the given xml file and returns a Model object containing only the fields dependency-check requires.ModelPomParser. parseWithoutDocTypeCleanup(java.io.InputStream inputStream)Parses the given XML file and returns a Model object containing only the fields dependency-check requires.static ModelPomUtils. readPom(java.io.File file)Reads in the specified POM and converts it to a Model.static ModelPomUtils. readPom(java.lang.String path, java.util.jar.JarFile jar)Retrieves the specified POM from a jar file and converts it to a Model.
-