summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java')
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java b/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java
new file mode 100644
index 00000000000..6769f05bb3e
--- /dev/null
+++ b/container-search/src/main/java/com/yahoo/search/query/properties/RankProfileInputProperties.java
@@ -0,0 +1,34 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.search.query.properties;
+
+import com.yahoo.api.annotations.Beta;
+import com.yahoo.processing.request.CompoundName;
+import com.yahoo.search.Query;
+import com.yahoo.search.query.Properties;
+
+import java.util.Map;
+
+/**
+ * Verifies and converts properties according to any input declarations in the rank profile set on the query.
+ *
+ * @author bratseth
+ */
+@Beta
+public class RankProfileInputProperties extends Properties {
+
+ private final Query query;
+
+ public RankProfileInputProperties(Query query) {
+ this.query = query;
+ }
+
+ /**
+ * Throws IllegalInputException if the given key cannot be set to the given value.
+ * This default implementation just passes to the chained properties, if any.
+ */
+ public void requireSettable(CompoundName name, Object value, Map<String, String> context) {
+ if (chained() != null)
+ chained().requireSettable(name, value, context);
+ }
+
+}