You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ry...@apache.org on 2007/08/01 20:36:49 UTC

svn commit: r561900 [2/2] - in /lucene/solr/trunk: client/java/solrj/src/org/apache/solr/client/solrj/ client/java/solrj/src/org/apache/solr/client/solrj/embedded/ client/java/solrj/src/org/apache/solr/client/solrj/impl/ client/java/solrj/src/org/apach...

Modified: lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java?view=diff&rev=561900&r1=561899&r2=561900
==============================================================================
--- lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java (original)
+++ lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java Wed Aug  1 11:36:45 2007
@@ -37,6 +37,7 @@
 import org.apache.commons.fileupload.disk.DiskFileItemFactory;
 import org.apache.commons.fileupload.servlet.ServletFileUpload;
 import org.apache.solr.common.SolrException;
+import org.apache.solr.common.params.CommonParams;
 import org.apache.solr.common.params.MultiMapSolrParams;
 import org.apache.solr.common.params.SolrParams;
 import org.apache.solr.common.util.ContentStream;
@@ -109,10 +110,10 @@
   public SolrQueryRequest buildRequestFrom( SolrParams params, Collection<ContentStream> streams ) throws Exception
   {
     // The content type will be applied to all streaming content
-    String contentType = params.get( SolrParams.STREAM_CONTENTTYPE );
+    String contentType = params.get( CommonParams.STREAM_CONTENTTYPE );
       
     // Handle anything with a remoteURL
-    String[] strs = params.getParams( SolrParams.STREAM_URL );
+    String[] strs = params.getParams( CommonParams.STREAM_URL );
     if( strs != null ) {
       if( !enableRemoteStreams ) {
         throw new SolrException( SolrException.ErrorCode.BAD_REQUEST, "Remote Streaming is disabled." );
@@ -127,7 +128,7 @@
     }
     
     // Handle streaming files
-    strs = params.getParams( SolrParams.STREAM_FILE );
+    strs = params.getParams( CommonParams.STREAM_FILE );
     if( strs != null ) {
       if( !enableRemoteStreams ) {
         throw new SolrException( SolrException.ErrorCode.BAD_REQUEST, "Remote Streaming is disabled." );
@@ -142,7 +143,7 @@
     }
     
     // Check for streams in the request parameters
-    strs = params.getParams( SolrParams.STREAM_BODY );
+    strs = params.getParams( CommonParams.STREAM_BODY );
     if( strs != null ) {
       for( final String body : strs ) {
         ContentStreamBase stream = new ContentStreamBase.StringStream( body );