git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@814303 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2009-09-13 11:23:57 +00:00
parent df5e4708d6
commit 82d525c875
1 changed files with 6 additions and 3 deletions

View File

@ -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)
* <p/>
* See http://wiki.apache.org/solr/ExtractingRequestHandler
* See http://wiki.apache.org/solr/ExtractingRequestHandler<br/>
* 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);