summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java')
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java b/config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java
index 604e2b0a44b..aaba9a2b98c 100644
--- a/config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java
+++ b/config-model/src/main/java/com/yahoo/config/model/deploy/SearchDocumentModel.java
@@ -2,7 +2,7 @@
package com.yahoo.config.model.deploy;
import com.yahoo.searchdefinition.Schema;
-import com.yahoo.searchdefinition.SearchBuilder;
+import com.yahoo.searchdefinition.SchemaBuilder;
import com.yahoo.vespa.documentmodel.DocumentModel;
import com.yahoo.vespa.model.search.NamedSchema;
@@ -34,17 +34,17 @@ public class SearchDocumentModel {
return schemas;
}
- public static SearchDocumentModel fromBuilderAndNames(SearchBuilder builder, Map<String, String> names) {
+ public static SearchDocumentModel fromBuilderAndNames(SchemaBuilder builder, Map<String, String> names) {
List<NamedSchema> ret = new ArrayList<>();
- for (Schema schema : builder.getSearchList()) {
+ for (Schema schema : builder.getSchemaList()) {
ret.add(new NamedSchema(names.get(schema.getName()), schema));
}
return new SearchDocumentModel(builder.getModel(), ret);
}
- public static SearchDocumentModel fromBuilder(SearchBuilder builder) {
+ public static SearchDocumentModel fromBuilder(SchemaBuilder builder) {
List<NamedSchema> ret = new ArrayList<>();
- for (Schema schema : builder.getSearchList()) {
+ for (Schema schema : builder.getSchemaList()) {
ret.add(new NamedSchema(schema.getName(), schema));
}
return new SearchDocumentModel(builder.getModel(), ret);