aboutsummaryrefslogtreecommitdiffstats
path: root/logserver/src/main/java/com/yahoo/plugin/Config.java
blob: 36de00d06c9fe729abf6fc0f1985bdbadf530fd9 (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 2017 Yahoo Holdings. 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));
    }
}