summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java')
-rw-r--r--bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java b/bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java
index ae9644aa010..dddca3f4d59 100644
--- a/bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java
+++ b/bundle-plugin-test/test-bundles/main/src/main/java/com/yahoo/test/SimpleSearcher.java
@@ -8,6 +8,8 @@ import com.yahoo.search.Searcher;
import com.yahoo.search.result.Hit;
import com.yahoo.search.searchchain.Execution;
import com.yahoo.text.BooleanParser;
+import org.json.JSONException;
+import org.json.JSONObject;
/**
* A searcher adding a new hit.
@@ -17,13 +19,19 @@ import com.yahoo.text.BooleanParser;
public class SimpleSearcher extends Searcher {
public Result search(Query query,Execution execution) {
+ try {
BooleanParser.parseBoolean("true");
XMLString xmlString = new XMLString("<sampleXmlString/>");
Hit hit = new Hit("Hello world!");
+ hit.setField("json", new JSONObject().put("price", 42).toString());
Result result = execution.search(query);
result.hits().add(hit);
return result;
+
+ } catch (JSONException e) {
+ throw new RuntimeException(e);
+ }
}
}