updated package-info

Former-commit-id: fdc542ccc2d06f352b2bb949e5107b7cbaf6561b
This commit is contained in:
Jeremy Long
2014-01-04 09:17:02 -05:00
parent 735660c830
commit 6022b13285
5 changed files with 59 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
/**
* <html>
* <head>
* <title>org.owasp.dependencycheck.data.update.exception</title>
* </head>
* <body>
* <p>A collection of exception classes used within the application.</p>
* </body>
* </html>
*/
package org.owasp.dependencycheck.data.update.exception;

View File

@@ -1,18 +1,15 @@
/** /**
* <html> * <html>
* <head> * <head>
* <title>org.owasp.dependencycheck.data.nvdcve.xml</title> * <title>org.owasp.dependencycheck.data.update</title>
* </head> * </head>
* <body> * <body>
* <p>Contains classes used to parse the NVD CVE XML file.</p> * <p>Contains classes used to update the data stores.</p>
* <p>The basic use is that the Importer is called to import * <p>The UpdateService will load, any correctly defined CachedWebDataSource(s)
* an NVD CVE file. The Importer instantiates an Indexer object * and call update() on them. The Cached Data Source must determine if it needs
* (which extends Index). The Indexer creates a partial-unmarshalling * to be updated and if so perform the update. The sub packages contain classes
* SAX parser (implemented in the NvdCveXmlFilter) that extracts * used to perform the actual updates.</p>
* VulnerabilityTypes (aka Entry) from the NVD CVE data file and
* stores these into a Lucene Index.</p>
* </body> * </body>
* </html> * </html>
*/ */
package org.owasp.dependencycheck.data.update; package org.owasp.dependencycheck.data.update;

View File

@@ -0,0 +1,12 @@
/**
* <html>
* <head>
* <title>org.owasp.dependencycheck.data.update.task</title>
* </head>
* <body>
* <p>A collection of callable/runnable tasks used to speed up the update
* process.</p>
* </body>
* </html>
*/
package org.owasp.dependencycheck.data.update.task;

View File

@@ -0,0 +1,18 @@
/**
* <html>
* <head>
* <title>org.owasp.dependencycheck.data.nvdcve.xml</title>
* </head>
* <body>
* <p>Contains classes used to parse the NVD CVE XML file.</p>
* <p>The basic use is that the Importer is called to import
* an NVD CVE file. The Importer instantiates an Indexer object
* (which extends Index). The Indexer creates a partial-unmarshalling
* SAX parser (implemented in the NvdCveXmlFilter) that extracts
* VulnerabilityTypes (aka Entry) from the NVD CVE data file and
* stores these into a Lucene Index.</p>
* </body>
* </html>
*/
package org.owasp.dependencycheck.data.update;

View File

@@ -0,0 +1,11 @@
/**
* <html>
* <head>
* <title>org.owasp.dependencycheck.exception</title>
* </head>
* <body>
* <p>A collection of exception classes used within the application.</p>
* </body>
* </html>
*/
package org.owasp.dependencycheck.exception;