mirror of https://github.com/apache/lucene.git
make SolrResponse Serializable
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@609879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2a074e6dc1
commit
d029ba59c8
|
@ -17,6 +17,8 @@
|
|||
|
||||
package org.apache.solr.client.solrj;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.apache.solr.common.util.NamedList;
|
||||
|
||||
|
||||
|
@ -25,7 +27,7 @@ import org.apache.solr.common.util.NamedList;
|
|||
* @version $Id$
|
||||
* @since solr 1.3
|
||||
*/
|
||||
public interface SolrResponse
|
||||
public interface SolrResponse extends Serializable
|
||||
{
|
||||
long getElapsedTime();
|
||||
NamedList<Object> getResponse();
|
||||
|
|
Loading…
Reference in New Issue