aboutsummaryrefslogtreecommitdiffstats
path: root/configserver-flags/src/main/java/com/yahoo/vespa/configserver/flags/ConfigServerFlagSource.java
blob: b7c4cac861d3e30d238fc9d7ca91ba5fd6dba647 (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
24
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.configserver.flags;

import com.yahoo.component.annotation.Inject;
import com.yahoo.vespa.configserver.flags.db.BootstrapFlagSource;
import com.yahoo.vespa.configserver.flags.db.ZooKeeperFlagSource;
import com.yahoo.vespa.flags.OrderedFlagSource;

import java.nio.file.FileSystem;
import java.nio.file.FileSystems;

/**
 * @author hakonhall
 */
public class ConfigServerFlagSource extends OrderedFlagSource {
    @Inject
    public ConfigServerFlagSource(FlagsDb flagsDb) {
        this(FileSystems.getDefault(), flagsDb);
    }

    ConfigServerFlagSource(FileSystem fileSystem, FlagsDb flagsDb) {
        super(new BootstrapFlagSource(fileSystem), new ZooKeeperFlagSource(flagsDb));
    }
}