summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/src/main/java/com/yahoo
diff options
context:
space:
mode:
Diffstat (limited to 'bundle-plugin-test/src/main/java/com/yahoo')
-rw-r--r--bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher.java37
-rw-r--r--bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java12
-rw-r--r--bundle-plugin-test/src/main/java/com/yahoo/test/package-info.java6
3 files changed, 55 insertions, 0 deletions
diff --git a/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher.java b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher.java
new file mode 100644
index 00000000000..9ddb15c16cb
--- /dev/null
+++ b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher.java
@@ -0,0 +1,37 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.test;
+
+import com.yahoo.prelude.hitfield.XMLString;
+import com.yahoo.search.Query;
+import com.yahoo.search.Result;
+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.
+ *
+ * @author Joe Developer
+ */
+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);
+ }
+ }
+}
diff --git a/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
new file mode 100644
index 00000000000..52211de45ca
--- /dev/null
+++ b/bundle-plugin-test/src/main/java/com/yahoo/test/SimpleSearcher2.java
@@ -0,0 +1,12 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.test;
+
+
+/**
+ * A searcher adding a new hit.
+ * TODO: add annotation check
+ * @author Joe Developer
+ */
+public class SimpleSearcher2 extends SimpleSearcher {
+ public void dummy() {}
+}
diff --git a/bundle-plugin-test/src/main/java/com/yahoo/test/package-info.java b/bundle-plugin-test/src/main/java/com/yahoo/test/package-info.java
new file mode 100644
index 00000000000..8ed830ab7d7
--- /dev/null
+++ b/bundle-plugin-test/src/main/java/com/yahoo/test/package-info.java
@@ -0,0 +1,6 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+@ExportPackage(version = @Version(major = 1, minor = 2, micro = 3, qualifier = "RELEASE"))
+package com.yahoo.test;
+
+import com.yahoo.osgi.annotation.ExportPackage;
+import com.yahoo.osgi.annotation.Version;