mirror of https://github.com/apache/lucene.git
SOLR-421 -- adding SolrDocument
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@600593 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cbfc1f07a2
commit
7dad8508d8
|
@ -17,6 +17,7 @@
|
|||
|
||||
package org.apache.solr.common;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
|
@ -35,7 +36,7 @@ import java.util.Set;
|
|||
* @version $Id$
|
||||
* @since solr 1.3
|
||||
*/
|
||||
public class SolrDocument
|
||||
public class SolrDocument implements Serializable
|
||||
{
|
||||
private Map<String,Object> _fields = null;
|
||||
|
||||
|
|
Loading…
Reference in New Issue