org.owasp.dependencycheck.utils.CveUrlParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-check-utils Show documentation
Show all versions of dependency-check-utils Show documentation
dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.
package org.owasp.dependencycheck.utils;
/**
* Interface providing a parser for an NVD CVE URL.
*
* The goal of this parser is to provide methods to manipulate these URLs.
*
* @author nhumblot
*
*/
public interface CveUrlParser {
static CveUrlParser newInstance(Settings settings) {
return new DefaultCveUrlModifiedParser(settings);
}
String getDefaultCveUrlModified(String baseUrl);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy