aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerClientFactory.java
blob: 98c631d087435c86f358486b17c4d5b58767d04b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.controller;

import com.yahoo.vespa.applicationmodel.HostName;

import java.util.List;

/**
 * @author bakksjo
 */
public interface ClusterControllerClientFactory {

    ClusterControllerClient createClient(List<HostName> clusterControllers, String clusterName);

}