All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.dependencycheck.utils.CveUrlParser Maven / Gradle / Ivy

Go to download

dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.

There is a newer version: 11.1.1
Show newest version
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