From 82d525c875ea6f120c82cf59b686c71c55a3dc22 Mon Sep 17 00:00:00 2001 From: Grant Ingersoll Date: Sun, 13 Sep 2009 11:23:57 +0000 Subject: [PATCH] javadocs git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@814303 13f79535-47bb-0310-9956-ffa450edef68 --- .../client/solrj/request/ContentStreamUpdateRequest.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/solrj/org/apache/solr/client/solrj/request/ContentStreamUpdateRequest.java b/src/solrj/org/apache/solr/client/solrj/request/ContentStreamUpdateRequest.java index d1606ff3f02..442257cd01b 100644 --- a/src/solrj/org/apache/solr/client/solrj/request/ContentStreamUpdateRequest.java +++ b/src/solrj/org/apache/solr/client/solrj/request/ContentStreamUpdateRequest.java @@ -34,9 +34,12 @@ import java.util.List; /** - * Basic functionality to upload a File to a Solr Cell + * Basic functionality to upload a File or {@link org.apache.solr.common.util.ContentStream} to a Solr Cell or some + * other handler that takes ContentStreams (CSV) *

- * See http://wiki.apache.org/solr/ExtractingRequestHandler + * See http://wiki.apache.org/solr/ExtractingRequestHandler
+ * See http://wiki.apache.org/solr/UpdateCSV + * * **/ public class ContentStreamUpdateRequest extends AbstractUpdateRequest { @@ -44,7 +47,7 @@ public class ContentStreamUpdateRequest extends AbstractUpdateRequest { /** * - * @param url The URL for Solr Cell. + * @param url The URL to send the {@link org.apache.solr.common.util.ContentStream} to in Solr. */ public ContentStreamUpdateRequest(String url) { super(METHOD.POST, url);