summaryrefslogtreecommitdiffstats
path: root/logserver/src/main/java/com/yahoo/plugin/Config.java
diff options
context:
space:
mode:
Diffstat (limited to 'logserver/src/main/java/com/yahoo/plugin/Config.java')
-rw-r--r--logserver/src/main/java/com/yahoo/plugin/Config.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/logserver/src/main/java/com/yahoo/plugin/Config.java b/logserver/src/main/java/com/yahoo/plugin/Config.java
new file mode 100644
index 00000000000..a7ea2b44caf
--- /dev/null
+++ b/logserver/src/main/java/com/yahoo/plugin/Config.java
@@ -0,0 +1,23 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.plugin;
+
+/**
+ * This interface specifies an API for configuring runtime-loadable
+ * server plugins.
+ *
+ * @author <a href="mailto:stig@yahoo-inc.com">Stig Bakken</a>
+ */
+public abstract class Config
+{
+ /**
+ * @return a config value for the specified key
+ */
+ public abstract String get(String key, String defaultValue);
+
+ /**
+ * @return a config value as an integer
+ */
+ public int getInt(String key, String defaultValue) {
+ return Integer.parseInt(get(key, defaultValue));
+ }
+}