mirror of https://github.com/apache/lucene.git
make FacetField.java Serializable
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@608595 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1517b93d2b
commit
edddef5231
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
package org.apache.solr.client.solrj.response;
|
package org.apache.solr.client.solrj.response;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -27,9 +28,9 @@ import java.util.List;
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @since solr 1.3
|
* @since solr 1.3
|
||||||
*/
|
*/
|
||||||
public class FacetField
|
public class FacetField implements Serializable
|
||||||
{
|
{
|
||||||
public static class Count
|
public static class Count implements Serializable
|
||||||
{
|
{
|
||||||
private String _name = null;
|
private String _name = null;
|
||||||
private int _count = 0;
|
private int _count = 0;
|
||||||
|
|
Loading…
Reference in New Issue