summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonClient.java
blob: bd6c2607fc20f83e8fc435285b90f15144bdc513 (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
26
// 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;

import com.yahoo.slime.Slime;
import java.io.InputStream;

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

    InputStream getMetrics(byte[] query);

    InputStream getUser();

    InputStream getDashboard(String dashboardId) ;

    InputStream getFavorite(String userId);

    InputStream getTopFolders();

    InputStream getRecent(String userId);

    InputStream getClipboard(String dashboardId);

}