updated package info

Former-commit-id: 61a2ac8c1d1888e508118805752d67e23e63bce3
This commit is contained in:
Jeremy Long
2014-01-11 12:41:30 -05:00
parent 801102d379
commit 11a634b9be

View File

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