Repository: nutch Updated Branches: refs/heads/2.x 7dcc5fa69 -> 0ea78907d
http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/parse-tika/src/test/org/apache/nutch/parse/tika/TestRSSParser.java ---------------------------------------------------------------------- diff --git a/src/plugin/parse-tika/src/test/org/apache/nutch/parse/tika/TestRSSParser.java b/src/plugin/parse-tika/src/test/org/apache/nutch/parse/tika/TestRSSParser.java index 67d3dcc..19035c0 100644 --- a/src/plugin/parse-tika/src/test/org/apache/nutch/parse/tika/TestRSSParser.java +++ b/src/plugin/parse-tika/src/test/org/apache/nutch/parse/tika/TestRSSParser.java @@ -59,7 +59,7 @@ public class TestRSSParser { /** * <p> * The test method: tests out the following 2 asserts: - * </p> + * * * <ul> * <li>There are 3 outlinks read from the sample rss file</li> http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-file/src/java/org/apache/nutch/protocol/file/File.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-file/src/java/org/apache/nutch/protocol/file/File.java b/src/plugin/protocol-file/src/java/org/apache/nutch/protocol/file/File.java index 0695439..20ba474 100644 --- a/src/plugin/protocol-file/src/java/org/apache/nutch/protocol/file/File.java +++ b/src/plugin/protocol-file/src/java/org/apache/nutch/protocol/file/File.java @@ -99,8 +99,8 @@ public class File implements Protocol { * * @param url * Text containing the url - * @param datum - * The CrawlDatum object corresponding to the url + * @param page + * {@link WebPage} object relative to the URL * * @return {@link ProtocolOutput} object for the content of the file indicated * by url http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-file/src/test/org/apache/nutch/protocol/file/TestProtocolFile.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-file/src/test/org/apache/nutch/protocol/file/TestProtocolFile.java b/src/plugin/protocol-file/src/test/org/apache/nutch/protocol/file/TestProtocolFile.java index 856a649..952648f 100644 --- a/src/plugin/protocol-file/src/test/org/apache/nutch/protocol/file/TestProtocolFile.java +++ b/src/plugin/protocol-file/src/test/org/apache/nutch/protocol/file/TestProtocolFile.java @@ -39,7 +39,7 @@ import static org.junit.Assert.*; * * <p> * Unit tests for the {@link File}Protocol. - * </p> + * * . */ public class TestProtocolFile { http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Client.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Client.java b/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Client.java index ffa2091..8b272ec 100644 --- a/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Client.java +++ b/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Client.java @@ -54,7 +54,7 @@ import org.apache.commons.net.ftp.FTPConnectionClosedException; * servers out there, when partial downloading is enforeced by closing data * channel socket on our client side, the server side immediately closes control * channel (socket). Our codes deal with such a bad behavior. (4) LIST is used - * to obtain remote file attributes if possible. MDTM & SIZE would be nice, but + * to obtain remote file attributes if possible. MDTM & SIZE would be nice, but * not as ubiquitously implemented as LIST. (5) Avoid using ABOR in single * thread? Do not use it at all. * http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Ftp.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Ftp.java b/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Ftp.java index 3f3a7e8..9f3f9c5 100644 --- a/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Ftp.java +++ b/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Ftp.java @@ -114,8 +114,8 @@ public class Ftp implements Protocol { * * @param url * Text containing the ftp url - * @param datum - * The CrawlDatum object corresponding to the url + * @param page + * {@link WebPage} object relative to the URL * * @return {@link ProtocolOutput} object for the url */ http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/DummySSLProtocolSocketFactory.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/DummySSLProtocolSocketFactory.java b/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/DummySSLProtocolSocketFactory.java index afcf24a..92baf29 100644 --- a/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/DummySSLProtocolSocketFactory.java +++ b/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/DummySSLProtocolSocketFactory.java @@ -97,7 +97,7 @@ public class DummySSLProtocolSocketFactory implements * create a new socket within the given limit of time. If socket constructor * does not return until the timeout expires, the controller terminates and * throws an {@link ConnectTimeoutException} - * </p> + * * * @param host * the host name/IP http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/Http.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/Http.java b/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/Http.java index d4d7eba..69abab7 100644 --- a/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/Http.java +++ b/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/Http.java @@ -161,8 +161,8 @@ public class Http extends HttpBase { * * @param url * URL to be fetched - * @param datum - * Crawl data + * @param page + * {@link WebPage} object relative to the URL * @param redirect * Follow redirects if and only if true * @return HTTP response http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/HttpBasicAuthentication.java ---------------------------------------------------------------------- diff --git a/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/HttpBasicAuthentication.java b/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/HttpBasicAuthentication.java index a15f91b..cb09e69 100644 --- a/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/HttpBasicAuthentication.java +++ b/src/plugin/protocol-httpclient/src/java/org/apache/nutch/protocol/httpclient/HttpBasicAuthentication.java @@ -39,7 +39,7 @@ import org.apache.hadoop.conf.Configurable; /** * Implementation of RFC 2617 Basic Authentication. Usernames and passwords are * stored in standard Nutch configuration files using the following properties: - * http.auth.basic.<realm>.user http.auth.basic.<realm>.pass + * http.auth.basic.<realm>.user http.auth.basic.<realm>.pass */ public class HttpBasicAuthentication implements HttpAuthentication, Configurable { @@ -128,7 +128,7 @@ public class HttpBasicAuthentication implements HttpAuthentication, * Gets the Basic credentials generated by this HttpBasicAuthentication object * * @return Credentials in the form of - * <code>Authorization: Basic <Base64 encoded userid:password> + * <code>Authorization: Basic Base64 encoded userid:password</code> * */ public List<String> getCredentials() { http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/scoring-link/src/java/org/apache/nutch/scoring/link/package-info.java ---------------------------------------------------------------------- diff --git a/src/plugin/scoring-link/src/java/org/apache/nutch/scoring/link/package-info.java b/src/plugin/scoring-link/src/java/org/apache/nutch/scoring/link/package-info.java index 9dc0c35..5006266 100644 --- a/src/plugin/scoring-link/src/java/org/apache/nutch/scoring/link/package-info.java +++ b/src/plugin/scoring-link/src/java/org/apache/nutch/scoring/link/package-info.java @@ -16,8 +16,7 @@ */ /** - * Scoring filter used in conjunction with - * {@link org.apache.nutch.scoring.webgraph.WebGraph}. + * Scoring filter */ package org.apache.nutch.scoring.link; http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/scoring-opic/src/java/org/apache/nutch/scoring/opic/OPICScoringFilter.java ---------------------------------------------------------------------- diff --git a/src/plugin/scoring-opic/src/java/org/apache/nutch/scoring/opic/OPICScoringFilter.java b/src/plugin/scoring-opic/src/java/org/apache/nutch/scoring/opic/OPICScoringFilter.java index c311922..1e07e6a 100644 --- a/src/plugin/scoring-opic/src/java/org/apache/nutch/scoring/opic/OPICScoringFilter.java +++ b/src/plugin/scoring-opic/src/java/org/apache/nutch/scoring/opic/OPICScoringFilter.java @@ -39,7 +39,7 @@ import java.util.Set; /** * This plugin implements a variant of an Online Page Importance Computation * (OPIC) score, described in this paper: <a - * href="http://www2003.org/cdrom/papers/refereed/p007/p7-abiteboul.html"/> + * href="http://www2003.org/cdrom/papers/refereed/p007/p7-abiteboul.html"> * Abiteboul, Serge and Preda, Mihai and Cobena, Gregory (2003), Adaptive * On-Line Page Importance Computation </a>. * http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/subcollection/src/java/org/apache/nutch/collection/CollectionManager.java ---------------------------------------------------------------------- diff --git a/src/plugin/subcollection/src/java/org/apache/nutch/collection/CollectionManager.java b/src/plugin/subcollection/src/java/org/apache/nutch/collection/CollectionManager.java index 6c78df5..c905411 100644 --- a/src/plugin/subcollection/src/java/org/apache/nutch/collection/CollectionManager.java +++ b/src/plugin/subcollection/src/java/org/apache/nutch/collection/CollectionManager.java @@ -201,7 +201,7 @@ public class CollectionManager extends Configured { /** * Save collections into file * - * @throws Exception + * @throws IOException */ public void save() throws IOException { try { http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/DomainURLFilter.java ---------------------------------------------------------------------- diff --git a/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/DomainURLFilter.java b/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/DomainURLFilter.java index bf1ef42..5b7d581 100644 --- a/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/DomainURLFilter.java +++ b/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/DomainURLFilter.java @@ -43,7 +43,6 @@ import org.apache.nutch.util.domain.DomainSuffix; * Filters URLs based on a file containing domain suffixes, domain names, and * hostnames. Only a url that matches one of the suffixes, domains, or hosts * present in the file is allowed. - * </p> * * <p> * Urls are checked in order of domain suffix, domain name, and hostname against @@ -61,18 +60,17 @@ import org.apache.nutch.util.domain.DomainSuffix; * only urls from www.apache.org. There is no specific ordering to entries. The * entries are from more general to more specific with the more general * overridding the more specific. - * </p> * * The domain file defaults to domain-urlfilter.txt in the classpath but can be * overridden using the: * * <ul> - * <ol> + * <li> * property "urlfilter.domain.file" in ./conf/nutch-*.xml, and - * </ol> - * <ol> + * </li> + * <li> * attribute "file" in plugin.xml of this plugin - * </ol> + * </li> * </ul> * * the attribute "file" has higher precedence if defined. @@ -114,7 +112,6 @@ public class DomainURLFilter implements URLFilter { * @param domainFile * The domain file, overrides domain-urlfilter.text default. * - * @throws IOException */ public DomainURLFilter(String domainFile) { this.domainFile = domainFile; http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/package-info.java ---------------------------------------------------------------------- diff --git a/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/package-info.java b/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/package-info.java index d2eba1f..1ff46f6 100644 --- a/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/package-info.java +++ b/src/plugin/urlfilter-domain/src/java/org/apache/nutch/urlfilter/domain/package-info.java @@ -18,8 +18,6 @@ /** * URL filter plugin to include only URLs which match an element in a given list of * domain suffixes, domain names, and/or host names. - * See {@link org.apache.nutch.urlfilter.domainblacklist} for the counterpart - * (exclude URLs by host or domain). */ package org.apache.nutch.urlfilter.domain; http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/urlfilter-prefix/src/java/org/apache/nutch/urlfilter/prefix/PrefixURLFilter.java ---------------------------------------------------------------------- diff --git a/src/plugin/urlfilter-prefix/src/java/org/apache/nutch/urlfilter/prefix/PrefixURLFilter.java b/src/plugin/urlfilter-prefix/src/java/org/apache/nutch/urlfilter/prefix/PrefixURLFilter.java index 366c11e..75ece12 100644 --- a/src/plugin/urlfilter-prefix/src/java/org/apache/nutch/urlfilter/prefix/PrefixURLFilter.java +++ b/src/plugin/urlfilter-prefix/src/java/org/apache/nutch/urlfilter/prefix/PrefixURLFilter.java @@ -49,7 +49,7 @@ import java.util.ArrayList; * * <p> * The format of this file is one URL prefix per line. - * </p> + * */ public class PrefixURLFilter implements URLFilter { http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/urlfilter-suffix/src/java/org/apache/nutch/urlfilter/suffix/SuffixURLFilter.java ---------------------------------------------------------------------- diff --git a/src/plugin/urlfilter-suffix/src/java/org/apache/nutch/urlfilter/suffix/SuffixURLFilter.java b/src/plugin/urlfilter-suffix/src/java/org/apache/nutch/urlfilter/suffix/SuffixURLFilter.java index 1a7492a..ccad47d 100644 --- a/src/plugin/urlfilter-suffix/src/java/org/apache/nutch/urlfilter/suffix/SuffixURLFilter.java +++ b/src/plugin/urlfilter-suffix/src/java/org/apache/nutch/urlfilter/suffix/SuffixURLFilter.java @@ -68,22 +68,22 @@ import java.net.MalformedURLException; * The format of this config file is one URL suffix per line, with no preceding * whitespace. Order, in which suffixes are specified, doesn't matter. Blank * lines and comments (#) are allowed. - * </p> + * * <p> * A single '+' or '-' sign not followed by any suffix must be used once, to * signify the mode this plugin operates in. An optional single 'I' can be * appended, to signify that suffix matches should be case-insensitive. The * default, if not specified, is to use case-sensitive matches, i.e. suffix * '.JPG' does not match '.jpg'. - * </p> + * * <p> * NOTE: the format of this file is different from urlfilter-prefix, because * that plugin doesn't support allowed/prohibited prefixes (only supports * allowed prefixes). Please note that this plugin does not support regular * expressions, it only accepts literal suffixes. I.e. a suffix "+*.jpg" is most * probably wrong, you should use "+.jpg" instead. - * </p> - * <h4>Example 1</h4> + * + * <strong>Example 1</strong> * <p> * The configuration shown below will accept all URLs with '.html' or '.htm' * suffixes (case-sensitive - '.HTML' or '.HTM' will be rejected), and prohibit @@ -101,8 +101,8 @@ import java.net.MalformedURLException; * .htm * </pre> * - * </p> - * <h4>Example 2</h4> + * + * <strong>Example 2</strong> * <p> * The configuration shown below will accept all URLs except common graphical * formats. @@ -122,7 +122,7 @@ import java.net.MalformedURLException; * .bmp * </pre> * - * </p> + * * * @author Andrzej Bialecki */ http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/urlfilter-validator/src/java/org/apache/nutch/urlfilter/validator/UrlValidator.java ---------------------------------------------------------------------- diff --git a/src/plugin/urlfilter-validator/src/java/org/apache/nutch/urlfilter/validator/UrlValidator.java b/src/plugin/urlfilter-validator/src/java/org/apache/nutch/urlfilter/validator/UrlValidator.java index 9b84eae..7132a61 100644 --- a/src/plugin/urlfilter-validator/src/java/org/apache/nutch/urlfilter/validator/UrlValidator.java +++ b/src/plugin/urlfilter-validator/src/java/org/apache/nutch/urlfilter/validator/UrlValidator.java @@ -25,13 +25,13 @@ import org.apache.nutch.net.URLFilter; /** * <p> * Validates URLs. - * </p> + * * * <p> * Originally based in on php script by Debbie Dyer, validation.php v1.2b, Date: * 03/07/02, http://javascript.internet.com. However, this validation now bears * little resemblance to the php original. - * </p> + * * * <pre> * Example of usage: @@ -47,7 +47,7 @@ import org.apache.nutch.net.URLFilter; * * <p> * Based on UrlValidator code from Apache commons-validator. - * </p> + * * * @see <a href='http://www.ietf.org/rfc/rfc2396.txt' > Uniform Resource * Identifiers (URI): Generic Syntax </a> @@ -159,7 +159,7 @@ public class UrlValidator implements URLFilter { /** * <p> * Checks if a field has a valid url address. - * </p> + * * * @param value * The value validation is being performed on. A <code>null</code> @@ -323,7 +323,7 @@ public class UrlValidator implements URLFilter { * <p> * Checks if the field isn't null and length of the field is greater than zero * not including whitespace. - * </p> + * * * @param value * The value validation is being performed on. http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java ---------------------------------------------------------------------- diff --git a/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java b/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java index d460d9e..66f7a1b 100644 --- a/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java +++ b/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java @@ -58,11 +58,11 @@ import org.xml.sax.InputSource; * This class uses the <tt>urlnormalizer.regex.file</tt> property. It should be * set to the file name of an xml file which should contain the patterns and * substitutions to be done on encountered URLs. - * </p> + * * <p> * This class also supports different rules depending on the scope. Please see * the javadoc in {@link org.apache.nutch.net.URLNormalizers} for more details. - * </p> + * * * @author Luke Baker * @author Andrzej Bialecki http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/test/org/apache/nutch/api/AbstractNutchAPITestBase.java ---------------------------------------------------------------------- diff --git a/src/test/org/apache/nutch/api/AbstractNutchAPITestBase.java b/src/test/org/apache/nutch/api/AbstractNutchAPITestBase.java index 2e4e61c..f7d7388 100644 --- a/src/test/org/apache/nutch/api/AbstractNutchAPITestBase.java +++ b/src/test/org/apache/nutch/api/AbstractNutchAPITestBase.java @@ -141,7 +141,7 @@ public abstract class AbstractNutchAPITestBase { */ if (ChallengeScheme.HTTP_DIGEST.equals(challengeScheme)) { - // User server's data to complete the challengeResponse object + // Use server's data to complete the challengeResponse object ChallengeRequest digestChallengeRequest = retrieveDigestChallengeRequest(resource); ChallengeResponse challengeResponse = new ChallengeResponse(digestChallengeRequest, resource.getResponse(), username, password.toCharArray()); http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/test/org/apache/nutch/crawl/TestGenerator.java ---------------------------------------------------------------------- diff --git a/src/test/org/apache/nutch/crawl/TestGenerator.java b/src/test/org/apache/nutch/crawl/TestGenerator.java index 95d1db3..2345299 100644 --- a/src/test/org/apache/nutch/crawl/TestGenerator.java +++ b/src/test/org/apache/nutch/crawl/TestGenerator.java @@ -42,7 +42,7 @@ import static org.junit.Assert.assertEquals; * <li>Generates entries to fetch</li> * <li>Verifies that number of generated urls match, and finally </li> * <li>Verifies that highest scoring urls are generated.</li> - * <ol> + * </ol> * */ public class TestGenerator extends AbstractNutchTest { http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/test/org/apache/nutch/fetcher/TestFetcher.java ---------------------------------------------------------------------- diff --git a/src/test/org/apache/nutch/fetcher/TestFetcher.java b/src/test/org/apache/nutch/fetcher/TestFetcher.java index 8a8fa42..9d62d50 100644 --- a/src/test/org/apache/nutch/fetcher/TestFetcher.java +++ b/src/test/org/apache/nutch/fetcher/TestFetcher.java @@ -161,13 +161,15 @@ public class TestFetcher extends AbstractNutchTest { /** * Tests a refetch of a URL. This process consists of two consecutive * inject, generate, fetch, parse then update cycles. The test configuration - * is defined such that <code>db.fetch.interval.default</code> is set to + * is defined such that <code>db.fetch.interval.default</code> is set to * a very low value (indicating that the URL should be fetched again immediately). * In addition, configuration tests that relevant * {@link org.apache.nutch.metadata.Metadata} is present and the values consistent * and therefore not overwritten. - * @see https://issues.apache.org/jira/browse/NUTCH-2222 + * * @throws Exception + * + * @see <a href="https://issues.apache.org/jira/browse/NUTCH-2222">https://issues.apache.org/jira/browse/NUTCH-2222</a> */ @Test public void testReFetch() throws Exception { http://git-wip-us.apache.org/repos/asf/nutch/blob/0ea78907/src/test/org/apache/nutch/util/CrawlTestUtil.java ---------------------------------------------------------------------- diff --git a/src/test/org/apache/nutch/util/CrawlTestUtil.java b/src/test/org/apache/nutch/util/CrawlTestUtil.java index 5165b38..046c51e 100644 --- a/src/test/org/apache/nutch/util/CrawlTestUtil.java +++ b/src/test/org/apache/nutch/util/CrawlTestUtil.java @@ -71,7 +71,8 @@ public class CrawlTestUtil { /** * Generate seedlist * - * @see TestInjector + * @see org.apache.nutch.crawl.TestInjector + * * @throws IOException */ public static void generateSeedList(FileSystem fs, Path urlPath, @@ -148,11 +149,11 @@ public class CrawlTestUtil { } /** - * Generate Fetchlist. + * Generates Fetchlist * * @param numResults number of results to generate * @param config Configuration to use - * @return path to generated batch + * * @throws IOException */ public static void generateFetchlist(int numResults, Configuration config,
