mirror of https://github.com/apache/lucene.git
make the luke response vars Serializable
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@678202 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3c33837cbd
commit
c9b7eb19cc
|
@ -20,6 +20,7 @@ package org.apache.solr.client.solrj.response;
|
|||
import org.apache.solr.common.luke.FieldFlag;
|
||||
import org.apache.solr.common.util.NamedList;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
|
||||
|
||||
|
@ -31,7 +32,7 @@ import java.util.*;
|
|||
*/
|
||||
public class LukeResponse extends SolrResponseBase {
|
||||
|
||||
public static class FieldTypeInfo {
|
||||
public static class FieldTypeInfo implements Serializable {
|
||||
String name;
|
||||
String className;
|
||||
boolean tokenized;
|
||||
|
@ -102,7 +103,7 @@ public class LukeResponse extends SolrResponseBase {
|
|||
}
|
||||
}
|
||||
|
||||
public static class FieldInfo {
|
||||
public static class FieldInfo implements Serializable {
|
||||
String name;
|
||||
String type;
|
||||
String schema;
|
||||
|
|
Loading…
Reference in New Issue