updated package-info

Former-commit-id: cbacf975eae9951165dffdda5ffe0066589d8268
This commit is contained in:
Jeremy Long
2014-01-04 09:17:02 -05:00
parent 44fe358766
commit ded3079390
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>
* <head>
* <title>org.owasp.dependencycheck.data.nvdcve.xml</title>
* <title>org.owasp.dependencycheck.data.update</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>
* <p>Contains classes used to update the data stores.</p>
* <p>The UpdateService will load, any correctly defined CachedWebDataSource(s)
* and call update() on them. The Cached Data Source must determine if it needs
* to be updated and if so perform the update. The sub packages contain classes
* used to perform the actual updates.</p>
* </body>
* </html>
*/
*/
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;