summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/RunDataExtractor.java
blob: ee2b74372aece2f5b6f7b733dc74b221181c5822 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core.status;

import com.yahoo.vespa.clustercontroller.core.ContentCluster;
import com.yahoo.vespa.clustercontroller.core.FleetControllerOptions;

/**
 * @author Haakon Humberset
 */
public interface RunDataExtractor {

    FleetControllerOptions getOptions();
    long getConfigGeneration();
    ContentCluster getCluster();

}