aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/proxy/ConfigServerRestExecutor.java
blob: e623b7e440cbf392d6d8b3ae8ac356b48edabb55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.proxy;

import com.yahoo.container.jdisc.HttpResponse;

/**
 * Executes call against config servers and handles discovery requests. Rest URIs in the response are
 * rewritten.
 *
 * @author Haakon Dybdahl
 */
public interface ConfigServerRestExecutor {

    HttpResponse handle(ProxyRequest request);

}