From c602072e5bf4b5680554dfa6413646ea5b127c17 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sat, 4 Jan 2014 08:54:36 -0500 Subject: [PATCH] updated JavaDoc Former-commit-id: ce55cd1de24523e421a30b64bfdb906c50b65597 --- .../dependencycheck/data/CachedWebDataSource.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java index b5c78032f..73334e608 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/CachedWebDataSource.java @@ -21,20 +21,20 @@ package org.owasp.dependencycheck.data; import org.owasp.dependencycheck.update.UpdateException; /** - * Defines an Index who's data is retrieved from the Internet. This data can be - * downloaded and the index updated. + * Defines a data source who's data is retrieved from the Internet. This data + * can be downloaded and the local cache updated. * * @author Jeremy Long (jeremy.long@owasp.org) */ public interface CachedWebDataSource { /** - * Determines if an update to the current index is needed, if it is the new - * data is downloaded from the Internet and imported into the current Lucene - * Index. + * Determines if an update to the current data store is needed, if it is the + * new data is downloaded from the Internet and imported into the current + * cached data store. * - * @throws UpdateException is thrown if there is an exception updating the - * index. + * @throws UpdateException is thrown if there is an exception downloading + * the data or updating the data store. */ void update() throws UpdateException; }