Uses of Class
org.owasp.dependencycheck.data.nvdcve.DatabaseException
-
Packages that use DatabaseException Package Description org.owasp.dependencycheck Includes the main entry point for dependency-check.org.owasp.dependencycheck.analyzer Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.org.owasp.dependencycheck.data.nvdcve Contains classes used to work with the NVD CVE data.org.owasp.dependencycheck.utils Includes various utility classes such as a Settings wrapper, a Checksum utility, etc. -
-
Uses of DatabaseException in org.owasp.dependencycheck
Methods in org.owasp.dependencycheck that throw DatabaseException Modifier and Type Method Description booleanEngine. doUpdates()Cycles through the cached web data sources and calls update on all of them.booleanEngine. doUpdates(boolean remainOpen)Cycles through the cached web data sources and calls update on all of them.voidEngine. openDatabase()This method is only public for unit/integration testing.voidEngine. openDatabase(boolean readOnly, boolean lockRequired)This method is only public for unit/integration testing. -
Uses of DatabaseException in org.owasp.dependencycheck.analyzer
Methods in org.owasp.dependencycheck.analyzer that throw DatabaseException Modifier and Type Method Description voidCPEAnalyzer. open(CveDB cve)Opens the data source.voidNpmCPEAnalyzer. open(CveDB cve)Opens the data source. -
Uses of DatabaseException in org.owasp.dependencycheck.data.nvdcve
Subclasses of DatabaseException in org.owasp.dependencycheck.data.nvdcve Modifier and Type Class Description classCorruptDatabaseExceptionAn exception used to indicate the db4o database is corrupt.Methods in org.owasp.dependencycheck.data.nvdcve that throw DatabaseException Modifier and Type Method Description java.sql.ConnectionDatabaseManager. getConnection()Constructs a new database connection object per the database configuration.java.util.Set<Pair<java.lang.String,java.lang.String>>CveDB. getVendorProductList()Returns the entire list of vendor/product combinations.java.util.Set<Pair<java.lang.String,java.lang.String>>CveDB. getVendorProductListForNode()Returns the entire list of vendor/product combinations filtered for just Node JS related products.java.util.List<Vulnerability>CveDB. getVulnerabilities(us.springett.parsers.cpe.Cpe cpe)Retrieves the vulnerabilities associated with the specified CPE.VulnerabilityCveDB. getVulnerability(java.lang.String cve)Gets a vulnerability for the provided CVE.VulnerabilityCveDB. getVulnerability(java.lang.String cve, java.sql.Connection conn)Gets a vulnerability for the provided CVE.voidCveDB. updateKnownExploitedVulnerabilities(java.util.List<Vulnerability> vulnerabilities)Merges the list of known exploited vulnerabilities into the database.Constructors in org.owasp.dependencycheck.data.nvdcve that throw DatabaseException Constructor Description CveDB(Settings settings)Creates a new CveDB object and opens the database connection.DatabaseManager(Settings settings)Private constructor for this factory class; no instance is ever needed. -
Uses of DatabaseException in org.owasp.dependencycheck.utils
Methods in org.owasp.dependencycheck.utils that throw DatabaseException Modifier and Type Method Description static intDBUtils. getGeneratedKey(java.sql.PreparedStatement statement)Returns the generated integer primary key for a newly inserted row.
-