summaryrefslogtreecommitdiffstats
path: root/logserver/src/main/java/com/yahoo/plugin/Config.java
blob: a7ea2b44caf6fa638c5b0507bef760a3cbef4920 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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));
    }
}