updated package-info

Former-commit-id: 191f7b8866bdc2e5c9ea9b5aac2c4ab1a23a5881
This commit is contained in:
Jeremy Long
2015-04-05 09:31:32 -04:00
parent 03ce1d2ea8
commit 75b3f4b3c8

View File

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