mirror of https://github.com/apache/lucene.git
javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@814303 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
df5e4708d6
commit
82d525c875
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue