moving UpdateParams.java to o.a.s.util (new class since 1.1)

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@533411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2007-04-28 18:49:20 +00:00
parent c92187b2f1
commit 01ed55a933
2 changed files with 7 additions and 2 deletions

View File

@ -25,6 +25,7 @@ import org.apache.solr.request.SolrParams;
import org.apache.solr.request.SolrQueryRequest;
import org.apache.solr.request.SolrQueryResponse;
import org.apache.solr.update.CommitUpdateCommand;
import org.apache.solr.util.UpdateParams;
/**
* Common helper functions for RequestHandlers

View File

@ -15,10 +15,14 @@
* limitations under the License.
*/
package org.apache.solr.handler;
package org.apache.solr.util;
/**
* A collection of params used by Update handlers
* A collection of standard params used by Update handlers
*
* @author ryan
* @version $Id$
* @since solr 1.2
*/
public interface UpdateParams
{