aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/state/State.java
blob: 0887637d5a1cee8ad20a67125ebe16b0c729b103 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.configserver.state;

/**
 * The /state/v1 REST API of the config server
 *
 * @author hakon
 */
public interface State {
    /** Issue GET on /state/v1/health */
    HealthCode getHealth();
}