summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonClient.java
blob: 554d3e5b7fa03a17596a51ba7b9924601cc2782e (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
25
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.horizon;

/**
 * @author olaa
 */
public interface HorizonClient {

    HorizonResponse getMetrics(byte[] query);

    HorizonResponse getUser();

    HorizonResponse getDashboard(String dashboardId);

    HorizonResponse getFavorite(String userId);

    HorizonResponse getTopFolders();

    HorizonResponse getRecent(String userId);

    HorizonResponse getClipboard(String dashboardId);

    HorizonResponse getMetaData(byte[] query);

}