aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/config/subscription/DirSource.java
blob: fbd65ccf5973b5baa6a0a7b133828523a6d78848 (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.config.subscription;

import java.io.File;

/**
 * Source specifying config from a local directory
 * @author Vegard Havdal
 */
public class DirSource implements ConfigSource {
    private final File dir;

    public DirSource(File dir) {
        if (!dir.isDirectory()) throw new IllegalArgumentException("Not a directory: "+dir);
        this.dir = dir;
    }

    public File getDir() {
        return dir;
    }

}