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